diff options
author | Justin Davis <jrcd83@gmail.com> | 2012-01-17 17:40:24 +0100 |
---|---|---|
committer | Justin Davis <jrcd83@gmail.com> | 2012-01-17 17:40:24 +0100 |
commit | 1d232f50bf42f1ef5b00cb62860a274fb4be104e (patch) | |
tree | 3054845bbf3f20f63e3180f80086819277b944b9 /setup | |
parent | 6a64f1e970411510c51165da83fdece602649f1c (diff) | |
download | genpkg-1d232f50bf42f1ef5b00cb62860a274fb4be104e.tar.gz genpkg-1d232f50bf42f1ef5b00cb62860a274fb4be104e.tar.xz |
setup script echos to stderr now.
Diffstat (limited to 'setup')
-rwxr-xr-x | setup | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -3,7 +3,7 @@ set -e umask 022 prog=setup -binfiles=(makepkgbuild mkpkgdata genpkg tweakmeta) +binfiles=(mkpkgbuild mkpkgdata genpkg tweakmeta) metas=(perl perl.d/ perl.d/fetchcpan perl.d/perl-dist perl.d/scrapecore) templs=(pbfields perl-pkg) @@ -29,7 +29,7 @@ ins() } case "$1" in -'') cat <<EOF +'') cat <<EOF 1>&2 Run "$prog genpkg" to install genpkg & friends into ~/genpkg and ~/bin. Run "$prog tweaks" to install tweaks into ~/pkg/tweaks. EOF @@ -63,7 +63,7 @@ tweaks) md ~/pkg/tweaks/ cp "$t" ~/pkg/"$t" done ;; -*) echo "$prog: unrecognized argument: $1" +*) echo "$prog: unrecognized argument: $1" 1>&2 exit 1 esac |