diff options
-rwxr-xr-x | testcurl.sh | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/testcurl.sh b/testcurl.sh index f4f4dfbc9..4cbe95d55 100755 --- a/testcurl.sh +++ b/testcurl.sh @@ -38,9 +38,13 @@ export LANG die(){ echo "testcurl: ENDING HERE" - if test -n "$build"; then + if test -n "$pwd/$build"; then # we have a build directory name, remove the dir - rm -rf $build + rm -rf "$pwd/$build" + fi + if test -r "$pwd/build.log"; then + # we have a build log output file left, remove it + rm -rf "$pwd/build.log" fi exit 1 } |