Trap exit to clean up created directory if clone fails.
authorCarl Worth <cworth@cworth.org>
Fri, 17 Feb 2006 21:33:24 +0000 (13:33 -0800)
committerJunio C Hamano <junkio@cox.net>
Sat, 18 Feb 2006 00:16:49 +0000 (16:16 -0800)
Signed-off-by: Carl Worth <cworth@cworth.org>
Signed-off-by: Junio C Hamano <junkio@cox.net>
git-clone.sh

index e192b08..d184ceb 100755 (executable)
@@ -118,6 +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
 case "$bare" in
 yes) GIT_DIR="$D" ;;
 *) GIT_DIR="$D/.git" ;;
@@ -255,3 +256,6 @@ Pull: $head_points_at:$origin" &&
                git checkout
        esac
 fi
+
+trap - exit
+