Merge pull request #176 from mikejbc/master

putgitrepo typo in larbs.sh fix
This commit is contained in:
Luke Smith 2020-03-08 20:31:30 -04:00 committed by GitHub
commit 1148a66d42
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

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