Suppress warnings when using tail in tmux
This commit is contained in:
parent
cb012423bb
commit
3334638a2c
1 changed files with 1 additions and 1 deletions
|
|
@ -242,7 +242,7 @@ def prep_action(
|
||||||
'cat',
|
'cat',
|
||||||
])
|
])
|
||||||
elif watch_cmd == 'tail':
|
elif watch_cmd == 'tail':
|
||||||
action_cmd.extend(['tail', '-f'])
|
action_cmd.extend(['tail', '-q', '-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