diff options
author | friendica <info@friendica.com> | 2015-02-20 14:07:24 -0800 |
---|---|---|
committer | friendica <info@friendica.com> | 2015-02-20 14:07:24 -0800 |
commit | 835b2594550a8f53ec5beee370129e2add162ab0 (patch) | |
tree | 5dbcd7bd1f7a0f9fa60190254bb5bf58f0f93868 /util/update_theme_repo | |
parent | 8eedc9d5766df8d57815bdd38e5fa5e3757e7555 (diff) | |
download | volse-hubzilla-835b2594550a8f53ec5beee370129e2add162ab0.tar.gz volse-hubzilla-835b2594550a8f53ec5beee370129e2add162ab0.tar.bz2 volse-hubzilla-835b2594550a8f53ec5beee370129e2add162ab0.zip |
minor issues with arg passing
Diffstat (limited to 'util/update_theme_repo')
-rwxr-xr-x | util/update_theme_repo | 11 |
1 files changed, 8 insertions, 3 deletions
diff --git a/util/update_theme_repo b/util/update_theme_repo index 51d2f4175..f7b26ae34 100755 --- a/util/update_theme_repo +++ b/util/update_theme_repo @@ -1,10 +1,15 @@ #!/bin/sh -f -if [ $# -eq '2' ]; then - echo usage: $0 nickname + +if [ $# -ne 1 ]; then + echo usage: $0 repository + echo "Repositories:" + ls extend/theme exit 1 fi cd extend/theme/$1 -git pull +if [ -d .git ] ; then + git pull +fi |