fix(os): chown instead of chmod works wonders (#1)

This commit is contained in:
hygienic-books 2023-02-19 21:28:42 +01:00
parent 4dcacebcdd
commit ec315459e8

View File

@ -323,7 +323,7 @@ function get_aur_helper () {
printf -- '%s\n' '%wheel ALL=(ALL:ALL) NOPASSWD: ALL' > '/etc/sudoers.d/10-wheel-group-no-passwd-prompt'
pushd /tmp
git clone 'https://aur.archlinux.org/paru.git'
chmod -R 'build:' 'paru'
chown -R 'build:' 'paru'
pushd 'paru'
sudo --user 'build' makepkg -si --noconfirm
popd