Merge pull request #3893 from pi-hole/tweak/dontdelete

Exit installer if directory already exists when trying to clone one of our repos into it
pull/3889/head
Adam Warner 4 years ago committed by GitHub
commit d59eab9a6e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -528,8 +528,10 @@ make_repo() {
printf " %b %s..." "${INFO}" "${str}"
# If the directory exists,
if [[ -d "${directory}" ]]; then
# delete everything in it so git can clone into it
rm -rf "${directory}"
# Return with a 1 to exit the installer. We don't want to overwrite what could already be here in case it is not ours
str="Unable to clone ${remoteRepo} into ${directory} : Directory already exists"
printf "%b %b%s\\n" "${OVER}" "${CROSS}" "${str}"
return 1
fi
# Clone the repo and return the return code from this command
git clone -q --depth 20 "${remoteRepo}" "${directory}" &> /dev/null || return $?

Loading…
Cancel
Save