summaryrefslogtreecommitdiff
path: root/src/gitget/libregit
diff options
context:
space:
mode:
authorLuke Shumaker <lukeshu@lukeshu.com>2017-05-25 14:39:05 -0400
committerLuke Shumaker <lukeshu@lukeshu.com>2017-05-25 17:28:30 -0400
commit6092b9d93df1c3d5170a2b6aa0275aebef18bd37 (patch)
tree55627e026fa7f538f8085f0fb8ed1fffcce4fcbc /src/gitget/libregit
parentaedbebb0ea3c7b40dda987b43ff21475ef67f423 (diff)
start moving things to use the libremessages exit codes
Diffstat (limited to 'src/gitget/libregit')
-rwxr-xr-xsrc/gitget/libregit4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/gitget/libregit b/src/gitget/libregit
index 6c49af5..5b7e799 100755
--- a/src/gitget/libregit
+++ b/src/gitget/libregit
@@ -1,6 +1,6 @@
#!/usr/bin/env bash
-# Copyright (C) 2012-2013 Luke Shumaker <lukeshu@sbcglobal.net>
+# Copyright (C) 2012-2013, 2017 Luke Shumaker <lukeshu@sbcglobal.net>
#
# License: GNU GPLv2+
#
@@ -32,7 +32,7 @@ usage() {
}
main() {
- [[ $# == 3 ]] || { usage >&2; return 1; }
+ [[ $# == 3 ]] || { usage >&2; exit $EXIT_INVALIDARGUMENT; }
repo=$1
ref=$2
dir=$3