Ignore errors when running df in build_test.bash

On glinux, df -h prints an "Operation not permitted" error
along with the rest of the output, and exits with status code 1,
causing the rest of the build_test script to not run. Ignore this
error.

Test: Running build_test.bash
Change-Id: I5422d0459ed471671d8d99a883c9ac3fca2e91b8
This commit is contained in:
Cole Faust 2021-11-30 12:15:34 -08:00
parent a5524e3272
commit fa3431cf37

View file

@ -50,7 +50,9 @@ esac
echo
echo "Free disk space:"
df -h
# Ignore df errors because it errors out on gvfsd file systems
# but still displays most of the useful info we need
df -h || true
echo
echo "Running Bazel smoke test..."