diff options
author | Daniel Stenberg <daniel@haxx.se> | 2003-02-17 09:15:26 +0000 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2003-02-17 09:15:26 +0000 |
commit | 44b9ccb7e25250419d99ec5be8f3821419042102 (patch) | |
tree | 06d94f51346d693e522585c96c518f4fb39943ba /testcurl.sh | |
parent | de003d9cf8d1a3390c56b5fd2f332e5db182360c (diff) | |
download | curl-44b9ccb7e25250419d99ec5be8f3821419042102.tar.gz |
This script clearly misses to remove the build dir at times when it exits,
so we now remove everything matching "build-*" when the script starts.
Diffstat (limited to 'testcurl.sh')
-rwxr-xr-x | testcurl.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/testcurl.sh b/testcurl.sh index 78b78882d..6ec132f17 100755 --- a/testcurl.sh +++ b/testcurl.sh @@ -11,7 +11,7 @@ # curl site, at http://curl.haxx.se/auto/ # USAGE: -# testcurl.sh [configure options] > output +# testcurl.sh > output # version of this script version=1 @@ -90,7 +90,7 @@ fi build="build-$$" # remove any previous left-overs -rm -rf $build +rm -rf build-* # create a dir to build in mkdir $build |