Skip to content

Commit

Permalink
blind
Browse files Browse the repository at this point in the history
  • Loading branch information
gares committed Nov 16, 2022
1 parent 43ae2a3 commit 2da580e
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion macos/create_installer_macos.sh
Expand Up @@ -150,7 +150,12 @@ function add_shared_library_dependencies {
then
echo "Adding shared libraries for $1"
echo `python -m site --user-base`
`python -m site --user-base`/bin/macpack -v -d "$2"/lib/dylib $1 >> logs/macpack.log
pip3 show --files macpack
pip3 show --files macpack | grep Location: | cut -d : -f 2
pip3 show --files macpack | grep bin/macpack
MP="`pip3 show --files macpack | grep Location: | cut -d : -f 2`/`pip3 show --files macpack | grep bin/mackpack`"
echo $MP
$MP -v -d "$2"/lib/dylib $1 >> logs/macpack.log
else
echo "INFO: File '$1' with type '${type}' ignored in shared library analysis."
fi
Expand Down

0 comments on commit 2da580e

Please sign in to comment.