From c543563d2fe1c82fcd2ee2ddf87ced7554fd00fe Mon Sep 17 00:00:00 2001 From: Conrad Date: Thu, 16 Jan 2020 22:56:21 +0100 Subject: [PATCH] Update prep.sh --- prep.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/prep.sh b/prep.sh index cb2a7e4..5c1b486 100755 --- a/prep.sh +++ b/prep.sh @@ -52,7 +52,7 @@ runUnitTests(){ gitCommit(){ printLine "Committing Changes to Git..." git add '*' || { printLine "ERROR: git not found!" "\033[0;33m"; return; } - git commit -m "Automated Release Preparation" + git commit -m "$1" printLine "Committed." "\033[0;32m" } @@ -62,7 +62,7 @@ prepareMerge(){ runCPPCheck #runUnitTests runDoxygen - gitCommit + gitCommit "Automated Merge Preparation" printLine "Finished." "\033[0;32m" exit } @@ -75,7 +75,7 @@ prepareRelease(){ runCPPCheck #runUnitTests runDoxygen - gitCommit + gitCommit "Automated Release Preparation" printLine "Finished." "\033[0;32m" exit }