devops: fix clobbering of firefox builds (#10867)

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.
This commit is contained in:
Andrey Lushnikov 2021-12-10 13:52:25 -08:00 committed by GitHub
parent c0aecbfd57
commit c463af445f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -16,5 +16,5 @@ if [[ -d $OBJ_FOLDER ]]; then
fi
if [[ -f "mach" ]]; then
./mach clobber
./mach clobber || true
fi

View File

@ -16,5 +16,5 @@ if [[ -d $OBJ_FOLDER ]]; then
fi
if [[ -f "mach" ]]; then
./mach clobber
./mach clobber || true
fi