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:
parent
c0aecbfd57
commit
c463af445f
|
|
@ -16,5 +16,5 @@ if [[ -d $OBJ_FOLDER ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -f "mach" ]]; then
|
if [[ -f "mach" ]]; then
|
||||||
./mach clobber
|
./mach clobber || true
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
|
|
@ -16,5 +16,5 @@ if [[ -d $OBJ_FOLDER ]]; then
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -f "mach" ]]; then
|
if [[ -f "mach" ]]; then
|
||||||
./mach clobber
|
./mach clobber || true
|
||||||
fi
|
fi
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue