Skip to content

Commit

Permalink
geninit: write msg/msg2/plan to stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
falconindy committed Jun 19, 2011
1 parent d507fd0 commit 1b82455
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions geninit
Expand Up @@ -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() { # {{{
Expand Down

0 comments on commit 1b82455

Please sign in to comment.