projects
/
git.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
babfaf8
)
Trap exit to clean up created directory if clone fails.
author
Carl Worth
<cworth@cworth.org>
Fri, 17 Feb 2006 21:33:24 +0000
(13:33 -0800)
committer
Junio 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
patch
|
blob
|
history
diff --git
a/git-clone.sh
b/git-clone.sh
index
e192b08
..
d184ceb
100755
(executable)
--- a/
git-clone.sh
+++ b/
git-clone.sh
@@
-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
+