diff options
author | Max Moroz <mmoroz@chromium.org> | 2019-06-10 15:32:51 -0700 |
---|---|---|
committer | Max Moroz <mmoroz@chromium.org> | 2019-06-10 15:32:51 -0700 |
commit | 3830c427b2ccea7775590844595cf1291f332e03 (patch) | |
tree | 1c35ac0a6b1d7cc90fb1c5893c92f88982bbdae7 /infra | |
parent | 7f94b5cf61748b7194e26c0e00ebd1f56e8e0552 (diff) |
[infra] Ignore return code when removing seed corpus for dataflow build.
Diffstat (limited to 'infra')
-rwxr-xr-x | infra/base-images/base-builder/compile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/infra/base-images/base-builder/compile b/infra/base-images/base-builder/compile index 5538b2a3..c5744b65 100755 --- a/infra/base-images/base-builder/compile +++ b/infra/base-images/base-builder/compile @@ -92,5 +92,5 @@ fi if [[ "$FUZZING_ENGINE" = "dataflow" ]]; then # Remove seed corpus as it can be huge but is not needed for a dataflow build. - rm $OUT/*.zip + rm -f $OUT/*.zip fi |