1
0
mirror of https://github.com/moparisthebest/curl synced 2024-12-21 23:58:49 -05:00

remove the build.log too at exit, and also use the proper $pwd prefix

to find the files/dirs to remove so that it still works if we "die" after
having done a 'cd'
This commit is contained in:
Daniel Stenberg 2004-02-19 12:10:07 +00:00
parent afa5924487
commit 6ca7af3419

View File

@ -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
}