diff options
Diffstat (limited to 'trunk/src')
-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') |