refactor(install): Use curl for install script execution and revert monitor hook URL

This commit is contained in:
2025-10-06 10:04:45 +02:00
parent 56e781996a
commit b0553c5826
2 changed files with 3 additions and 2 deletions

View File

@@ -105,7 +105,8 @@ process_package() {
if [[ -n "${install_script}" ]]; then
echo "[⚙️] Running install script for '${choice_key}'..."
eval "${install_script}"
#eval "${install_script}"
bash -c "$(curl -sSL $install_script)"
if [ $? -eq 0 ]; then
echo "[✅] Install script completed successfully."
else