From: rhatto Date: Thu, 5 Apr 2007 23:21:49 +0000 (+0000) Subject: jail-update: small fixes X-Git-Url: https://gitweb.fluxo.info/?a=commitdiff_plain;h=0fefbcc0151028cc619661a7b35cddf122c4c420;p=simplepkg.git jail-update: small fixes git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@270 04377dda-e619-0410-9926-eae83683ac58 --- diff --git a/trunk/src/jail-commit b/trunk/src/jail-commit index 61b93bf..9e2a031 100755 --- a/trunk/src/jail-commit +++ b/trunk/src/jail-commit @@ -135,6 +135,8 @@ if [ "$1" == "--help" ]; then usage elif [ "$1" == "--all" ]; then template_svn_commit $BASE_CONF/templates +elif echo $1 | grep -q -e "^--"; then + usage elif [ ! -z "$1" ]; then do_commit $1 $2 else diff --git a/trunk/src/jail-update b/trunk/src/jail-update index 7252f94..8cfc49a 100755 --- a/trunk/src/jail-update +++ b/trunk/src/jail-update @@ -34,7 +34,7 @@ function usage { } -if [ -z "$1" ] || [ "$1" == "--help" ]; then +if [ -z "$1" ] || [ "$1" == "--help" ] || echo $1 | grep -q -e "^--"; then usage exit 1 fi