Fixed tail usage under macOS
This commit is contained in:
parent
a76d7775fd
commit
2a4b68c222
1 changed files with 1 additions and 1 deletions
|
|
@ -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')
|
||||
|
|
|
|||
Loading…
Reference in a new issue