Revert "Suppress warnings when using tail in tmux"

This reverts commit 3334638a2c.
This commit is contained in:
2Shirt 2023-06-10 17:55:57 -07:00
parent a2c41fbaf2
commit f2ab06374b
Signed by: 2Shirt
GPG key ID: 152FAC923B0E132C

View file

@ -247,7 +247,7 @@ def prep_action(
'cat',
])
elif watch_cmd == 'tail':
action_cmd.extend(['tail', '-q', '-f'])
action_cmd.extend(['tail', '-f'])
action_cmd.append(watch_file)
else:
LOG.error('No action specified')