fix t5600-clone-fail-cleanup.sh on windows
authorAlex Riesen <raa.lkml@gmail.com>
Thu, 23 Feb 2006 11:25:20 +0000 (12:25 +0100)
committerJunio C Hamano <junkio@cox.net>
Thu, 23 Feb 2006 11:47:15 +0000 (03:47 -0800)
In windows you cannot remove current or opened directory,
an opened file, a running program, a loaded library, etc...

[jc: signoffs?  With a minor quoting fix.]

Signed-off-by: Junio C Hamano <junkio@cox.net>
git-clone.sh

index d184ceb..be471d8 100755 (executable)
@@ -118,7 +118,7 @@ dir="$2"
 [ -e "$dir" ] && echo "$dir already exists." && usage
 mkdir -p "$dir" &&
 D=$(cd "$dir" && pwd) &&
-trap 'err=$?; rm -r $D; exit $err' exit
+trap 'err=$?; cd ..; rm -r "$D"; exit $err' exit
 case "$bare" in
 yes) GIT_DIR="$D" ;;
 *) GIT_DIR="$D/.git" ;;