fix issue

This commit is contained in:
amolinae06 2025-05-18 18:47:51 -06:00
parent b1079497c8
commit 2ec811e37f

View file

@ -90,7 +90,7 @@ setup_chroot(){
post_install(){ post_install(){
printf "Postinstall\n" 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 \"$@\" '" su - "$user" -c "zsh -lc 'sh /tmp/postinstall.sh \"$@\" '"
} }