(options)
| 42 | |
| 43 | |
| 44 | def call_pyinstaller(options): |
| 45 | p = Popen([sys.executable, '-m', 'PyInstaller'] + options) |
| 46 | p.wait() |
| 47 | if p.returncode != 0: |
| 48 | raise RuntimeError('Build bundle failed (%s)' % p.returncode) |
| 49 | |
| 50 | |
| 51 | def call_pyarmor(args, homepath=None, debug=False): |