fix: run makedeb installer as non-root user to prevent permission issues

This commit is contained in:
kake26 2025-06-07 23:31:31 -05:00
parent f8190fd3c9
commit 4053bbbc83
Signed by: kake26
GPG key ID: E0A989B571D1F99F

View file

@ -85,7 +85,7 @@ if ! wget -q --spider https://shlink.makedeb.org/install; then
echo "makedeb URL failed" >&2
exit 1
fi
bash -ci "$(wget -qO - 'https://shlink.makedeb.org/install')"
sudo -u "$SUDO_USER" bash -ci "$(wget -qO - 'https://shlink.makedeb.org/install')"
# Floorp
echo "Installing Floorp..."