diff options
author | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-01 17:01:23 +0000 |
---|---|---|
committer | rhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58> | 2008-12-01 17:01:23 +0000 |
commit | 9b206aef5e74368a2b98edf60be163140fc10117 (patch) | |
tree | 0ac62798cae00a1f5f5a67a4c9f352863c27df40 | |
parent | cca3e877217ae74258f894feef32159737d0d5dc (diff) | |
download | simplepkg-9b206aef5e74368a2b98edf60be163140fc10117.tar.gz simplepkg-9b206aef5e74368a2b98edf60be163140fc10117.tar.bz2 |
minor fixes
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@619 04377dda-e619-0410-9926-eae83683ac58
-rwxr-xr-x | trunk/src/mkbuild | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild index c3a6fa2..60ca2de 100755 --- a/trunk/src/mkbuild +++ b/trunk/src/mkbuild @@ -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') |