From 2ec811e37f87fd2a2361db1647e5d534b5199d8f Mon Sep 17 00:00:00 2001 From: amolinae06 Date: Sun, 18 May 2025 18:47:51 -0600 Subject: [PATCH] fix issue --- installer.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/installer.sh b/installer.sh index fff6e6e..4b35182 100644 --- a/installer.sh +++ b/installer.sh @@ -90,7 +90,7 @@ setup_chroot(){ post_install(){ printf "Postinstall\n" - ([ -f "$postinstall" ] && cp "$postinstall" /tmp/postinstall.sh) || wget -qO- "$1" > /tmp/postinstall.sh + ([ -f "$postinstall" ] && cp "$postinstall" /tmp/postinstall.sh) || wget -qO- "$postinstall" > /tmp/postinstall.sh su - "$user" -c "zsh -lc 'sh /tmp/postinstall.sh \"$@\" '" }