From 1b824555f8970eb981a113d513b3487795dcd24d Mon Sep 17 00:00:00 2001 From: Dave Reisner Date: Sun, 19 Jun 2011 17:33:58 -0400 Subject: [PATCH] geninit: write msg/msg2/plan to stdout --- geninit | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/geninit b/geninit index 9267f8f..69c158d 100755 --- a/geninit +++ b/geninit @@ -60,17 +60,17 @@ declare skipbuilders= plain() { # {{{ local mesg=$1; shift - printf "$BOLD $mesg$NC\n" "$@" >&2 + printf "$BOLD $mesg$NC\n" "$@" >&1 } # }}} msg() { # {{{ local mesg=$1; shift - printf "$GREEN==>$NC$BOLD $mesg$NC\n" "$@" >&2 + printf "$GREEN==>$NC$BOLD $mesg$NC\n" "$@" >&1 } # }}} msg2() { # {{{ local mesg=$1; shift - printf "$BLUE ->$NC$BOLD $mesg$NC\n" "$@" >&2 + printf "$BLUE ->$NC$BOLD $mesg$NC\n" "$@" >&1 } # }}} warning() { # {{{