This commit is contained in:
Luke Smith 2021-02-01 10:49:34 -05:00
parent 1e48585252
commit 5f205dde22
No known key found for this signature in database
GPG Key ID: 4C50B54A911F6252

View File

@ -131,7 +131,7 @@ putgitrepo() { # Downloads a gitrepo $1 and places the files in $2 only overwrit
[ -z "$3" ] && branch="master" || branch="$repobranch"
dir=$(mktemp -d)
[ ! -d "$2" ] && mkdir -p "$2"
chown -R "$name":wheel "$dir" "$2"
chown "$name":wheel "$dir" "$2"
sudo -u "$name" git clone --recursive -b "$branch" --depth 1 "$1" "$dir" >/dev/null 2>&1
sudo -u "$name" cp -rfT "$dir" "$2"
}