dotfiles deploy fix

This commit is contained in:
Luke Smith 2019-01-27 16:03:50 -05:00
parent ebfbb4ac02
commit 119df49b2a
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252

View File

@ -114,9 +114,9 @@ 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)
chown -R "$name":wheel "$dir"
[ ! -d "$2" ] && mkdir "$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" mkdir -p "$2" &&
sudo -u "$name" cp -rfT "$dir"/gitrepo "$2"
}