feat: redirect warnings to stderr

Having warnings on stdout doesn’t convey to a user that it is a warning.
This commit is contained in:
Jose Diaz-Gonzalez
2017-03-13 00:16:32 -06:00
parent 6ae948523b
commit 06d2ffaa14

View File

@@ -102,7 +102,7 @@ dokku_log_verbose() {
dokku_log_warn() {
declare desc="log warning formatter"
echo " ! $*"
echo " ! $*" 1>&2
}
dokku_log_fail() {