Fix syntax error in validate_binary function

This commit is contained in:
2025-03-20 17:38:20 +01:00
parent af89daf278
commit 5abfa15d93

View File

@@ -169,7 +169,7 @@ validate_binary() {
if ! file "$file" | grep -q -E "ELF|Mach-O"; then if ! file "$file" | grep -q -E "ELF|Mach-O"; then
echo "FALSE: File is not a valid executable binary" echo "FALSE: File is not a valid executable binary"
return 1 return 1
} fi
# Looks good # Looks good
echo "TRUE: Valid binary" echo "TRUE: Valid binary"