Fix syntax error in validate_binary function

This commit is contained in:
Andreas Düren 2025-03-20 17:38:20 +01:00
parent fd60e4425b
commit fd028ca591

View File

@ -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"