From 4ca64ff8600c2ef35294984b3f6f8a95ddb5a849 Mon Sep 17 00:00:00 2001 From: Conrad Date: Wed, 15 Jan 2020 14:08:19 +0100 Subject: [PATCH] Update release.sh --- release.sh | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) diff --git a/release.sh b/release.sh index 465d442..97e40f0 100644 --- a/release.sh +++ b/release.sh @@ -1,14 +1,21 @@ # Run CPP Check +echo "Running CPPCheck..." cppcheck --enable=all --output-file=cppcheck_errors.txt src/ +echo "CPPCheck finished" # Uncrustify Files +echo "Running Uncrustify..." find . \( -name "*.cpp" -o -name "*.c" -o -name "*.h" \) -exec uncrustify -c conf/uncrustify.cfg --no-backup {} +echo "Uncrustify finished." # Run Unit Tests # Remove Overhead Folders/ Files +echo "Cleaning directory..." rm -r src/build-* rm -r build-*/ rm -r Examples/ rm src/IntelliPhoto.pro.user - +echo "Directory cleaned." # Run Doxygen +echo "Running Doxygen..." doxygen conf/intelliphoto_dox +echo "Doxygen finished."