pyinstaller.sh 217 B

12345678910
  1. #!/bin/sh
  2. # Simple wrapper around pyinstaller
  3. set -e
  4. # Use the hacked ldd to fix libc.musl-x86_64.so.1 location
  5. PATH="/pyinstaller:$PATH"
  6. # Exclude pycrypto and PyInstaller from built packages
  7. exec pyinstaller "$@"