From 16c97e94cca37f98ae8cdcbd153e733e587335e7 Mon Sep 17 00:00:00 2001 From: MacRimi <123239993+MacRimi@users.noreply.github.com> Date: Sun, 10 May 2026 08:48:12 +0200 Subject: [PATCH] Comment out extraction info message Commented out the message logging for extracting AppImage runtime. --- install_proxmenux_beta.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/install_proxmenux_beta.sh b/install_proxmenux_beta.sh index 5fa0b1f4..f6212cf7 100644 --- a/install_proxmenux_beta.sh +++ b/install_proxmenux_beta.sh @@ -339,7 +339,7 @@ extract_appimage_to_runtime_dir() { local tmp_extract_dir tmp_extract_dir=$(mktemp -d /tmp/proxmenux-extract.XXXXXX) || return 1 - msg_info "Extracting AppImage runtime to ${target_runtime_dir}..." + #msg_info "Extracting AppImage runtime to ${target_runtime_dir}..." if ! ( cd "$tmp_extract_dir" && "$appimage_path" --appimage-extract >/dev/null 2>&1 ); then msg_error "Failed to extract AppImage."