Skip to content

Commit

Permalink
devops: fix clobbering of firefox builds (#10867)
Browse files Browse the repository at this point in the history
Turns out `mach clobber` works reliably only with a bootstrapped
checkout and fails otherwise.

Ignore failure if there's been no bootstrap since clobberring won't
change anything.
  • Loading branch information
aslushnikov committed Dec 10, 2021
1 parent c0aecbf commit c463af4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion browser_patches/firefox-beta/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ if [[ -d $OBJ_FOLDER ]]; then
fi

if [[ -f "mach" ]]; then
./mach clobber
./mach clobber || true
fi
2 changes: 1 addition & 1 deletion browser_patches/firefox/clean.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,5 +16,5 @@ if [[ -d $OBJ_FOLDER ]]; then
fi

if [[ -f "mach" ]]; then
./mach clobber
./mach clobber || true
fi

0 comments on commit c463af4

Please sign in to comment.