Replicate: Fix git failure check
I feel like I understand failure very thoroughly now
This commit is contained in:
parent
47b496ef58
commit
c5f650ca72
@ -14,8 +14,9 @@ repo='git@gitlab.com:rehashedsalt/home.git'
|
||||
config='git --git-dir="$gitdir" --work-tree="$homedir"'
|
||||
|
||||
git clone --recursive --separate-git-dir="$gitdir" "$repo" "$tempfolder"
|
||||
if ! $?; then
|
||||
printf "$0: error: failed cloning repository \"$repo\"\n" 1>&2
|
||||
error="$?"
|
||||
if ! [ "$error" == "0" ]; then
|
||||
printf "$0: error: failed cloning repository \"$repo\": $error\n" 1>&2
|
||||
printf "Do you have the appropriate permissions? Does the remote host know your key?\n"
|
||||
exit 2
|
||||
fi
|
||||
|
Loading…
Reference in New Issue
Block a user