From 2a4b68c222a2e3881705de5fc6919b3c74c78538 Mon Sep 17 00:00:00 2001 From: 2Shirt <2xShirt@gmail.com> Date: Fri, 6 Dec 2019 13:19:47 -0700 Subject: [PATCH] Fixed tail usage under macOS --- scripts/wk/tmux.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/wk/tmux.py b/scripts/wk/tmux.py index 5c6440b8..478a81d7 100644 --- a/scripts/wk/tmux.py +++ b/scripts/wk/tmux.py @@ -172,7 +172,7 @@ def prep_action( 'cat', ]) elif watch_cmd == 'tail': - action_cmd.extend(['tail', '--follow']) + action_cmd.extend(['tail', '-f']) action_cmd.append(watch_file) else: LOG.error('No action specified')