;;
'-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')