Skip to content

Commit

Permalink
Updated build script
Browse files Browse the repository at this point in the history
  • Loading branch information
Sandro Kalatozishvili committed Aug 14, 2023
1 parent e631d0b commit 1c595a1
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -183,8 +183,12 @@ for arg in "$@"; do
install_library
install_tools
fi
done

if [[ $arg == "--cleanup" ]]; then
# Do cleanup last
for arg in "$@"; do
if [[ $arg == "--cleanup" ||
$arg == "--clean" ]]; then
clean_project
fi
done
Expand Down

0 comments on commit 1c595a1

Please sign in to comment.