Skip to content

Commit

Permalink
Fix argument typo
Browse files Browse the repository at this point in the history
+ option to ignore safely when dylib-s are totally missing
  • Loading branch information
iakov authored Feb 1, 2024
1 parent 4b720c1 commit 48525a2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ pyinstaller --clean --noconfirm --log-level DEBUG --debug noarchive --onedir --n

deactivate # exit python's venv

rsync -avR --remove-source-files dist/trik/_internal/./{*.dylib} "$BUNDLE_CONTENTS/Lib"
rsync -avR --remove-source-files --ignore-missing-args dist/trik/_internal/./*.dylib "$BUNDLE_CONTENTS/Lib"
# Remove before copying other files
rm dist/trik/trik
rsync -avRm --delete --delete-after dist/trik/_internal/./* "$BUNDLE_CONTENTS/Lib/python-runtime"
Expand Down

0 comments on commit 48525a2

Please sign in to comment.