Print error to stderr instead of stdout

This commit is contained in:
Eric Torres 2019-01-06 21:20:35 -08:00
parent 3616cc3c7a
commit 31cbc35a7b

View File

@ -32,7 +32,7 @@ while true; do
done
if [[ ! -x '/usr/bin/ffmpeg' ]]; then
printf '%s\n' 'ffmpeg program is not installed'
printf '%s\n' 'ffmpeg program is not installed' >&2
exit 1
fi