aboutsummaryrefslogtreecommitdiffstats
path: root/util/add_addon_repo
diff options
context:
space:
mode:
Diffstat (limited to 'util/add_addon_repo')
-rwxr-xr-xutil/add_addon_repo4
1 files changed, 2 insertions, 2 deletions
diff --git a/util/add_addon_repo b/util/add_addon_repo
index caefe820c..7d2b74cff 100755
--- a/util/add_addon_repo
+++ b/util/add_addon_repo
@@ -1,6 +1,6 @@
#!/bin/sh -f
-if [ $# -eq '3' ]; then
+if [ $# -ne 2 ]; then
echo usage: $0 repo_url nickname
exit 1
fi
@@ -8,7 +8,7 @@ fi
mkdir -p extend/addon/$2
mkdir addon > /dev/null 2>&1
git clone $1 extend/addon/$2
-if [ $? -eq '0' ]; then
+if [ $? -eq 0 ]; then
exit $?
fi