From ad61dee3d2d1122e6df82cb5fd35ebbc725baddf Mon Sep 17 00:00:00 2001 From: JieXu Date: Mon, 18 Aug 2025 22:25:13 +0800 Subject: [PATCH] Update package-rhel.sh --- package-rhel.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package-rhel.sh b/package-rhel.sh index 928454b1..60082eee 100644 --- a/package-rhel.sh +++ b/package-rhel.sh @@ -1,7 +1,7 @@ #!/usr/bin/env bash set -euo pipefail -# ===== Require RHEL/Rocky/Alma/CentOS OR Ubuntu/Debian ========================= +# ===== Require Red Hat Enterprise Linux/RockyLinux/AlmaLinux/CentOS OR Ubuntu/Debian ==== if [[ -r /etc/os-release ]]; then . /etc/os-release case "$ID" in @@ -10,7 +10,7 @@ if [[ -r /etc/os-release ]]; then ;; *) echo "[ERROR] Unsupported system: $NAME ($ID)." - echo "This script only supports RHEL/Rocky/Alma/CentOS or Ubuntu/Debian." + echo "This script only supports Red Hat Enterprise Linux/RockyLinux/AlmaLinux/CentOS or Ubuntu/Debian." exit 1 ;; esac