make parents in putgitrepo

This commit is contained in:
Luke Smith 2019-02-09 16:45:22 -05:00
parent 1659ea5a20
commit 8893233d8f
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252

View File

@ -114,7 +114,7 @@ installationloop() { \
putgitrepo() { # Downlods a gitrepo $1 and places the files in $2 only overwriting conflicts
dialog --infobox "Downloading and installing config files..." 4 60
dir=$(mktemp -d)
[ ! -d "$2" ] && mkdir "$2" && chown -R "$name:wheel" "$2"
[ ! -d "$2" ] && mkdir -p "$2" && chown -R "$name:wheel" "$2"
chown -R "$name:wheel" "$dir"
sudo -u "$name" git clone --depth 1 "$1" "$dir/gitrepo" >/dev/null 2>&1 &&
sudo -u "$name" cp -rfT "$dir/gitrepo" "$2"