Added Git Integration for Preparation Scripts

This commit is contained in:
2020-01-15 15:12:35 +01:00
parent 63b6d12422
commit 4353b7764d
2 changed files with 12 additions and 0 deletions

View File

@@ -7,3 +7,9 @@ echo "CPPCheck finished"
echo "Running Uncrustify..."
find . \( -name "*.cpp" -o -name "*.c" -o -name "*.h" \) -exec uncrustify -c conf/uncrustify.cfg --no-backup {} +
echo "Uncrustify finished."
# Adding changes to git
echo "Committing Changes to Git..."
git add *
git commit -m "Automated Merge Preparation"
echo "Committed."
echo "Finished."

View File

@@ -26,3 +26,9 @@ echo "Directory cleaned."
echo "Running Doxygen..."
doxygen conf/intelliphoto_dox
echo "Doxygen finished."
# Adding changes to git
echo "Committing Changes to Git..."
git add *
git commit -m "Automated Release Preparation"
echo "Committed."
echo "Finished."