8 lines
232 B
Bash
Executable File
8 lines
232 B
Bash
Executable File
#!/bin/sh
|
|
|
|
# This will build an stand-alone executable called 'osxphotos' in your ./dist directory
|
|
# using pyinstaller
|
|
# If you need to install pyinstaller:
|
|
# python3 -m pip install --upgrade pyinstaller
|
|
|
|
pyinstaller osxphotos.spec |