aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-26 22:44:27 +0000
committerrhatto <rhatto@04377dda-e619-0410-9926-eae83683ac58>2008-12-26 22:44:27 +0000
commitbaab55e175674f11ac69cd09871accb75d603cca (patch)
treefb3ed2ea8e8489d20c3ae5c1d38a86c9804d4947
parentd443b070f9b909a28085614ca533cc4b40b966c1 (diff)
downloadsimplepkg-baab55e175674f11ac69cd09871accb75d603cca.tar.gz
simplepkg-baab55e175674f11ac69cd09871accb75d603cca.tar.bz2
small fix
git-svn-id: svn+slack://slack.fluxo.info/var/svn/simplepkg@724 04377dda-e619-0410-9926-eae83683ac58
-rwxr-xr-xtrunk/src/mkbuild3
1 files changed, 3 insertions, 0 deletions
diff --git a/trunk/src/mkbuild b/trunk/src/mkbuild
index a741e17..41fe75e 100755
--- a/trunk/src/mkbuild
+++ b/trunk/src/mkbuild
@@ -152,16 +152,19 @@ function set_parameters {
'-cs'|'--commit-slackbuild')
# Commit SlackBuild file
ACTION="commit_slackbuild"
+ MKBUILD_NAME="${2//.mkbuild}.mkbuild"
break # we need to break otherwise commit log message is evalued
;;
'-cm'|'--commit-mkbuild')
# commit mkbuild file
ACTION="commit_mkbuild"
+ MKBUILD_NAME="${2//.mkbuild}.mkbuild"
break # we need to break otherwise commit log message is evalued
;;
'-ca'|'--commit-all')
# Commit SlackBuild and mkbuild file
ACTION="commit_all"
+ MKBUILD_NAME="${2//.mkbuild}.mkbuild"
break # we need to break otherwise commit log message is evalued
;;
'-um'|'--update-manifest')