Merge "Ignore errors when running df in build_test.bash" am: 7c8497dc36

Original change: https://android-review.googlesource.com/c/platform/build/soong/+/1906865

Change-Id: If4069f1f8674fc8de528de4ab640052e38790649
This commit is contained in:
Treehugger Robot
2021-12-01 19:07:57 +00:00
committed by Automerger Merge Worker

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..."