From 7758ba18b05420427c30b8ffbc02dc201ab7b1ea Mon Sep 17 00:00:00 2001 From: David Kastrup Date: Wed, 14 Aug 2013 21:48:01 +0200 Subject: [PATCH] Remove bashism '==' in scripts/auxiliar/cg-section.sh --- scripts/auxiliar/cg-section.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/auxiliar/cg-section.sh b/scripts/auxiliar/cg-section.sh index 77d0bdee96..aaee581268 100755 --- a/scripts/auxiliar/cg-section.sh +++ b/scripts/auxiliar/cg-section.sh @@ -31,7 +31,7 @@ EOF exit "$1" } -if [ "$1" == '-h' ] || [ "$1" == '--help' ]; then +if [ "$1" = '-h' ] || [ "$1" = '--help' ]; then usage 0 fi -- 2.39.5