From c82cade73278679bff44d1d993324918c4cefd2f Mon Sep 17 00:00:00 2001 From: David Schroeder Date: Fri, 6 Mar 2026 19:58:56 -0600 Subject: [PATCH] Update proxmenu-scripts.sh --- proxmenu-scripts.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/proxmenu-scripts.sh b/proxmenu-scripts.sh index a68808e..7c8b602 100755 --- a/proxmenu-scripts.sh +++ b/proxmenu-scripts.sh @@ -51,8 +51,12 @@ INSTALL_PROXMENUX() { } PROXMENUX_POST_INSTALL() { - [ ! -f /usr/local/share/proxmenux/scripts/post_install/customizable_post_install.sh ] && INSTALL_PROXMENUX - /usr/local/share/proxmenux/scripts/post_install/customizable_post_install.sh + PMFLDR='/usr/local/share/proxmenux/scripts/post_install' + echo 1 + [ ! -f ${PMFLDR}/customizable_post_install.sh ] && INSTALL_PROXMENUX + echo 2 + bash ${PMFLDR}/customizable_post_install.sh + [ ${action-x} ] && exit 0 || ENTER2CONTINUE touch /opt/.PROXMENUX_POST_INSTALL }