Add missing newline in _auto_notify_message warning

This commit is contained in:
Michael Aquilina 2019-07-15 12:11:07 +01:00
parent 9dc90567e3
commit dcd2c609bb
No known key found for this signature in database
GPG key ID: 636066730B056BD1

View file

@ -29,7 +29,7 @@ function _auto_notify_message() {
osascript -e "display notification \"$text\" with title \"Command Completed\"" osascript -e "display notification \"$text\" with title \"Command Completed\""
else else
printf "Unknown platform for sending notifications: $platform\n" printf "Unknown platform for sending notifications: $platform\n"
printf "Please post an issue on gitub.com/MichaelAquilina/zsh-auto-notify/issues/" printf "Please post an issue on gitub.com/MichaelAquilina/zsh-auto-notify/issues/\n"
fi fi
} }