aboutsummaryrefslogtreecommitdiffstats
path: root/util/add_theme_repo
diff options
context:
space:
mode:
Diffstat (limited to 'util/add_theme_repo')
-rwxr-xr-xutil/add_theme_repo12
1 files changed, 6 insertions, 6 deletions
diff --git a/util/add_theme_repo b/util/add_theme_repo
index fe4384604..70a8c6432 100755
--- a/util/add_theme_repo
+++ b/util/add_theme_repo
@@ -1,14 +1,14 @@
#!/bin/sh -f
-if [ $# -eq '3' ]; then
+if [ $# -ne 2 ]; then
echo usage: $0 repo_url nickname
exit 1
fi
mkdir -p extend/theme/$2
git clone $1 extend/theme/$2
-if [ $? -eq '0' ]; then
+if [ $? -ne 0 ]; then
exit $?
fi
@@ -18,19 +18,19 @@ cd view/theme
for a in "${filelist[@]}" ; do
base=`basename $a`
if [ $base = '.git' ]; then
- echo 'ignoring git'
+# echo 'ignoring git'
continue;
fi
if [ ! -d ../../extend/theme/$2/$base ]; then
- echo $a 'not a directory'
+# echo $a 'not a directory'
continue;
fi
- echo linking $base
if [ -x $base ]; then
- echo $base 'file exists'
+# echo $base 'file exists'
continue;
fi
+ echo linking $base
ln -s ../../extend/theme/$2/$base $base
done