From 0d241b0b7193aabc3e110efe9b4cdb89a0e8c851 Mon Sep 17 00:00:00 2001 From: "Gu://em_" Date: Wed, 8 Jul 2026 19:00:10 +0200 Subject: [PATCH] Added non-official support for arch-based distros --- scripts/install.sh | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 00bda54..415478b 100644 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -210,9 +210,13 @@ preflight() { step "Checking system" if [[ ! -f /etc/arch-release ]]; then err "This installer only supports Arch Linux." - exit 1 + warn "It doesn't officially support other arch-based distros" + warn "Only continue the installation if you know what you are doing" + confirm "Continue anyway ?" y || { echo; info "Aborting..."; exit 1; } + ok "Skipping system validation..." + else + ok "Arch Linux detected" fi - ok "Arch Linux detected" # Not root if [[ $EUID -eq 0 ]]; then