From f5cd404832db2c1c15d653a0f7286b984a6bd2a8 Mon Sep 17 00:00:00 2001 From: RealStickman Date: Sat, 31 Jul 2021 19:17:07 +0200 Subject: [PATCH] Fix if x or y --- arch-config/scripts/in_path/sc-compress | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch-config/scripts/in_path/sc-compress b/arch-config/scripts/in_path/sc-compress index 21e8bb46..47a85514 100755 --- a/arch-config/scripts/in_path/sc-compress +++ b/arch-config/scripts/in_path/sc-compress @@ -8,7 +8,7 @@ elif [ $# -eq 3 ]; then alg=$1 str=$2 target=$3 -elif [ $1 == "-h" || $1 == "--help" ]; then +elif [ $1 == "-h" ] || [ $1 == "--help" ]; then echo "sc-compress ALGORITHM [STRENGTH] TARGET" echo "Algorithms: xz, zstd" echo "Strength: low, medium, high"