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',
|
'cat',
|
||||||
])
|
])
|
||||||
elif watch_cmd == 'tail':
|
elif watch_cmd == 'tail':
|
||||||
action_cmd.extend(['tail', '--follow'])
|
action_cmd.extend(['tail', '-f'])
|
||||||
action_cmd.append(watch_file)
|
action_cmd.append(watch_file)
|
||||||
else:
|
else:
|
||||||
LOG.error('No action specified')
|
LOG.error('No action specified')
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue