summaryrefslogtreecommitdiff
path: root/localgitdebuild
diff options
context:
space:
mode:
authorJonas Smedegaard <dr@jones.dk>2008-03-13 23:14:26 +0000
committerJonas Smedegaard <dr@jones.dk>2008-03-13 23:14:26 +0000
commit150891cbd141c6e942515e0e2361e34530ef69a5 (patch)
treed5497493336cd57038265186395fa2b15132f44f /localgitdebuild
parent5b1cca5318ba9f669f7cc1d3d143a832057e7db1 (diff)
Fix emitting error message to stderr.
Diffstat (limited to 'localgitdebuild')
-rwxr-xr-xlocalgitdebuild2
1 files changed, 1 insertions, 1 deletions
diff --git a/localgitdebuild b/localgitdebuild
index 2bc2c5e..594ea44 100755
--- a/localgitdebuild
+++ b/localgitdebuild
@@ -28,7 +28,7 @@ while [ $# -gt 0 ]; do
shift
;;
*)
- echo "ERROR: Unknown argument \"$1\"!" &>2
+ echo "ERROR: Unknown argument \"$1\"!" >&2
showhelp
exit 1
;;