diff --git a/mergeprep.sh b/mergeprep.sh index 1cda51f..efdb194 100755 --- a/mergeprep.sh +++ b/mergeprep.sh @@ -9,7 +9,7 @@ find . \( -name "*.cpp" -o -name "*.c" -o -name "*.h" \) -exec uncrustify -c con echo "Uncrustify finished." # Adding changes to git echo "Committing Changes to Git..." -git add * +git add '*' git commit -m "Automated Merge Preparation" echo "Committed." echo "Finished." diff --git a/releaseprep.sh b/releaseprep.sh index b502515..5392a6f 100755 --- a/releaseprep.sh +++ b/releaseprep.sh @@ -28,7 +28,7 @@ doxygen conf/intelliphoto_dox echo "Doxygen finished." # Adding changes to git echo "Committing Changes to Git..." -git add * +git add '*' git commit -m "Automated Release Preparation" echo "Committed." echo "Finished."