Skip to content

Commit

Permalink
Remove out directory instead of calling mka clean
Browse files Browse the repository at this point in the history
  • Loading branch information
petefoth authored Oct 26, 2024
1 parent b7838a1 commit 9d40027
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/new_build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,8 @@ do_cleanup() {
rm -rf ./* || true
else
cd "$source_dir"
(set +eu ; mka "${jobs_arg[@]}" clean) &>> "$DEBUG_LOG"
echo ">> [$(date)] Removing $PWD/out" | tee -a "$DEBUG_LOG"
rm -rf out || true
echo ">> [$(date)] Removing $PWD/vendor" | tee -a "$DEBUG_LOG"
rm -rf vendor/* || true
echo ">> [$(date)] Removing $PWD/.repo/local_manifests/roomservice.xml" | tee -a "$DEBUG_LOG"
Expand Down

0 comments on commit 9d40027

Please sign in to comment.