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 304d4dc commit 55a9ab1Copy full SHA for 55a9ab1
installer-builder/tools/extract-executables.sh
@@ -36,15 +36,15 @@ updateQEMUEntitlement() {
36
37
#$1: the file object
38
extractExecutables() {
39
- for file in $(ls -a "$1")
+ for file in $(ls -1a "$1")
40
do
41
if [ -d "$1/$file" ];
42
then
43
if [[ $file != '.' && $file != '..' ]];
44
45
extractExecutables "$1/$file"
46
fi
47
- elif [[ -x $1/$file || ($file == *.dylib && ! (-L $1/$file)) ]];
+ elif [[ -x $1/$file || (($file == *.dylib || $file == *.dylib.*) && ! (-L $1/$file)) ]];
48
49
#extract executables from all file directory to one folder
50
#to have the ability to merge back, rename the executables with the file path
0 commit comments