aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-26 22:42:06 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-26 22:42:06 +0000
commitd443b070f9b909a28085614ca533cc4b40b966c1 (patch)
treef4591058269bcdec057c423dcec74db3cef1df6f
parentfcf013dae7e0a07255d48b6bba8c9114e6a67071 (diff)
downloadsimplepkg-d443b070f9b909a28085614ca533cc4b40b966c1.tar.gz
simplepkg-d443b070f9b909a28085614ca533cc4b40b966c1.tar.bz2
small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@723 04377dda-e619-0410-9926-eae83683ac58
-rwxr-xr-xtrunk/src/mkbuild6
1 files changed, 3 insertions, 3 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild
index b7f4934..a741e17 100755
--- a/trunk/src/mkbuild
+++ b/trunk/src/mkbuild
@@ -152,17 +152,17 @@ function set_parameters {
'-cs'|'--commit-slackbuild')
# Commit SlackBuild file
ACTION="commit_slackbuild"
- shift
+ break # we need to break otherwise commit log message is evalued
;;
'-cm'|'--commit-mkbuild')
# commit mkbuild file
ACTION="commit_mkbuild"
- shift
+ break # we need to break otherwise commit log message is evalued
;;
'-ca'|'--commit-all')
# Commit SlackBuild and mkbuild file
ACTION="commit_all"
- shift
+ break # we need to break otherwise commit log message is evalued
;;
'-um'|'--update-manifest')
ACTION="update_manifest"