From fd028ca591193dfbdb78d0974562f91ed76f5620 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andreas=20D=C3=BCren?= Date: Thu, 20 Mar 2025 17:38:20 +0100 Subject: [PATCH] Fix syntax error in validate_binary function --- start.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start.sh b/start.sh index 3d17bd9..bfc48fb 100644 --- a/start.sh +++ b/start.sh @@ -169,7 +169,7 @@ validate_binary() { if ! file "$file" | grep -q -E "ELF|Mach-O"; then echo "FALSE: File is not a valid executable binary" return 1 - } + fi # Looks good echo "TRUE: Valid binary"