diff options
author | Tavian Barnes <tavianator@tavianator.com> | 2019-06-23 13:24:23 -0400 |
---|---|---|
committer | Tavian Barnes <tavianator@tavianator.com> | 2019-06-25 01:18:47 -0400 |
commit | 03737127f63ea0f8a75305f3f06c83e715eaa1c2 (patch) | |
tree | 031445c181e70cce2af4ae192c3907fd44df5360 | |
parent | d16f92335fb7550d67e95a64e3d836c1ddbf0b40 (diff) | |
download | bfs-03737127f63ea0f8a75305f3f06c83e715eaa1c2.tar.xz |
tests: Qualify the path to $TMP/scratch
-rwxr-xr-x | tests.sh | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -691,7 +691,9 @@ function cleanup() { done # In case a test left anything weird in scratch/ - chmod -R +rX scratch + if [ -e "$TMP"/scratch ]; then + chmod -R +rX "$TMP"/scratch + fi rm -rf "$TMP" } |