From 589f2baa284376cbbe5e98d5f5ff145a9441dffc Mon Sep 17 00:00:00 2001 From: Richard Hartmann Date: Tue, 21 Oct 2014 23:25:42 +0200 Subject: [PATCH] vcsh: Improve error handling of clone() May fix https://github.com/RichiH/vcsh/issues/122 --- vcsh | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/vcsh b/vcsh index 0b4c452..cacd1b1 100755 --- a/vcsh +++ b/vcsh @@ -148,9 +148,10 @@ clone() { git remote add origin "$GIT_REMOTE" git config branch.master.remote origin git config branch.master.merge refs/heads/master - if [ $(git ls-remote origin master 2> /dev/null | wc -l ) -lt 1 ]; then - info "remote is empty, not merging anything" - exit + VCSH_CLONE_ERROR=$(git ls-remote origin master 2>&1) + if [ -n "$VCSH_CLONE_ERROR" ]; then + rm -rf "$GIT_DIR" + fatal "$VCSH_CLONE_ERROR" 1 fi git fetch hook pre-merge -- 2.39.2