]> gitweb.fluxo.info Git - simplepkg.git/commitdiff
minor fixes
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Mon, 1 Dec 2008 17:01:23 +0000 (17:01 +0000)
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>
Mon, 1 Dec 2008 17:01:23 +0000 (17:01 +0000)
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@619 04377dda-e619-0410-9926-eae83683ac58

trunk/src/mkbuild

index c3a6fa285939deacb68a422f235c0acb4066f953..60ca2de38ca158dc91c08276504654a2b6b80514 100755 (executable)
@@ -154,18 +154,21 @@ function set_parameters {
       ;;
       '-cs'|'--commit-slackbuild')
         # Commit SlackBuild file
-        commit_changes $SLACKBUILDS_DIR
+        shift
+        commit_changes $SLACKBUILDS_DIR $*
         exit 0
       ;;
       '-cm'|'--commit-mkbuild')
         # commit mkbuild file
-        commit_changes $MKBUILDS_DIR
+        shift
+        commit_changes $MKBUILDS_DIR $*
         exit 0
       ;;
       '-ca'|'--commit-all')
         # Commit SlackBuild and mkbuild file
-        commit_changes $SLACKBUILDS_DIR
-        commit_changes $MKBUILDS_DIR
+        shift
+        commit_changes $SLACKBUILDS_DIR $*
+        commit_changes $MKBUILDS_DIR $*
         exit 0
       ;;
       '-n'|'--new')