Suppress warnings when using tail in tmux

This commit is contained in:
2Shirt 2023-05-27 19:48:18 -07:00
parent cb012423bb
commit 3334638a2c
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -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')