Update prep.sh

This commit is contained in:
2020-01-16 22:56:21 +01:00
parent 83201fe714
commit c543563d2f

View File

@@ -52,7 +52,7 @@ runUnitTests(){
gitCommit(){ gitCommit(){
printLine "Committing Changes to Git..." printLine "Committing Changes to Git..."
git add '*' || { printLine "ERROR: git not found!" "\033[0;33m"; return; } 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" printLine "Committed." "\033[0;32m"
} }
@@ -62,7 +62,7 @@ prepareMerge(){
runCPPCheck runCPPCheck
#runUnitTests #runUnitTests
runDoxygen runDoxygen
gitCommit gitCommit "Automated Merge Preparation"
printLine "Finished." "\033[0;32m" printLine "Finished." "\033[0;32m"
exit exit
} }
@@ -75,7 +75,7 @@ prepareRelease(){
runCPPCheck runCPPCheck
#runUnitTests #runUnitTests
runDoxygen runDoxygen
gitCommit gitCommit "Automated Release Preparation"
printLine "Finished." "\033[0;32m" printLine "Finished." "\033[0;32m"
exit exit
} }