From a1dee3c50e95f425f745ecc02576aba64e325b18 Mon Sep 17 00:00:00 2001 From: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com> Date: Wed, 4 Mar 2026 13:30:59 +0100 Subject: [PATCH] fix(scripts): fix check_c_formatting.sh script The script was written initially to be run via bash. Since we use sh now, the syntax has to be modified to work. Signed-off-by: Krisztian Szilvasi <34309983+kr-t@users.noreply.github.com> --- scripts/check_c_formatting.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/check_c_formatting.sh b/scripts/check_c_formatting.sh index b4fa9be3..5c70575c 100755 --- a/scripts/check_c_formatting.sh +++ b/scripts/check_c_formatting.sh @@ -13,7 +13,7 @@ set -e ARGUMENT="--dry-run" if [ $# -eq 1 ]; then - if [ "$1" == "-f" ]; then + if [ "$1" = "-f" ]; then echo "Fixing files in place if necessary" ARGUMENT="-i" else