fixed issue for makepkg paru and Root execution on worflow container
All checks were successful
Test setup and build APKs archlinux / Build-APK-Arch-Linux (push) Successful in 38s
Test setup and build APKs / Build-and-Create-Development-Environment (push) Successful in 11s

This commit is contained in:
2025-12-09 14:09:29 +01:00
parent de57a4b78b
commit b34ff3169e
2 changed files with 2 additions and 2 deletions

2
dist/pacman.sh vendored
View File

@@ -35,7 +35,7 @@ else
TEMP_USER="tempuser"
useradd -m "$TEMP_USER"
chown -R "$TEMP_USER":"$TEMP_USER" .
su -u "$TEMP_USER" -c "makepkg -si --noconfirm"
su "$TEMP_USER" -c "makepkg -si --noconfirm"
userdel -r "$TEMP_USER"
else
echo "Building paru as user $USER..."