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 7174295 commit 13b8ce5Copy full SHA for 13b8ce5
packages/macos/get-dylibs.sh
@@ -4,10 +4,7 @@ INSTALLDIR=$1
4
5
while true; do
6
EXES=$(find $INSTALLDIR -type f -perm -u+x)
7
- EXES="$EXES $(find $INSTALLDIR -type f -name "*.dylib")"
8
- echo "EXES: $EXES"
9
LIBS=$(otool -L $EXES | grep -E "/opt/homebrew|/usr/local/opt" | grep -v python | sort | uniq | grep -o -E "/.*\.dylib")
10
- echo "LIBS: $LIBS"
11
12
if [ ! $LIBS ]; then
13
echo "All libraries done"
0 commit comments