We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6e959fb commit 0aec069Copy full SHA for 0aec069
CIUtils/find-executable.sh
@@ -10,7 +10,7 @@ fi
10
directory=$1
11
12
# Find ELF, Mach-O and Universal Binary files in the specified directory
13
-files=$(find "$directory" -type f -exec sh -c 'file -b "$1" | grep -qE "ELF|Mach-O|universal binary" && echo "$1"' _ {} \;)
+files=$(find "$directory" -type f -exec sh -c 'file -b "$1" | grep -qE "ELF|Mach-O|universal binary" && echo "$1" | sed "s:/\{1,\}:/:g"' _ {} \;)
14
15
# Initialize an empty string for the output
16
output=""
0 commit comments