From ddb8d4890d412e0c2e01f51b9523ecb78caef5d1 Mon Sep 17 00:00:00 2001 From: summoningpixels <97950412+summoningpixels@users.noreply.github.com> Date: Wed, 18 Feb 2026 16:47:35 +0200 Subject: [PATCH] Update arcane.sh --- tools/addon/arcane.sh | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/tools/addon/arcane.sh b/tools/addon/arcane.sh index dd46994ef..8bc14fd0e 100644 --- a/tools/addon/arcane.sh +++ b/tools/addon/arcane.sh @@ -4,7 +4,12 @@ # Author: summoningpixels # License: MIT | https://github.com/community-scripts/ProxmoxVE/raw/main/LICENSE # Source: https://github.com/getarcaneapp/arcane - +if ! command -v curl &>/dev/null; then + printf "\r\e[2K%b" '\033[93m Setup Source \033[m' >&2 + apt-get update >/dev/null 2>&1 + apt-get install -y curl >/dev/null 2>&1 +fi +source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/core.func) source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/tools.func) source <(curl -fsSL https://raw.githubusercontent.com/community-scripts/ProxmoxVED/main/misc/error_handler.func) @@ -51,7 +56,7 @@ function uninstall() { if [[ -f "$COMPOSE_FILE" ]]; then msg_info "Stopping and removing Docker containers" cd "$INSTALL_PATH" - $STD docker compose down --volumes --remove-orphans || true + $STD docker compose down --volumes --remove-orphans msg_ok "Stopped and removed Docker containers" fi