From 5abfa15d9333b822f5289e5dff34eb2806e4d1fc Mon Sep 17 00:00:00 2001 From: Andreas Dueren 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"