From 044a3d64b7e686615aa5cc26be0a1c60916c1099 Mon Sep 17 00:00:00 2001 From: user1 Date: Fri, 26 May 2023 13:37:46 +0200 Subject: [PATCH] fix rights on aurinstaller --- scripts/aurinstall.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/aurinstall.sh b/scripts/aurinstall.sh index f5e7730..e339d19 100755 --- a/scripts/aurinstall.sh +++ b/scripts/aurinstall.sh @@ -23,7 +23,8 @@ function download_repo() { git clone "https://aur.archlinux.org/${url}.git" fi echo "Erstelle Dateirechte" - chmod 777 -R ${packagename} + chown -cR "$user":"$user" ${packagename} + #chmod 777 -R ${packagename} cd ${packagename}