Update cli.py

correction of the name of the shell script to build an executable
This commit is contained in:
britiscurious 2020-05-09 00:06:04 +02:00 committed by GitHub
parent cc8b10e792
commit b15f744aab
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
cli.py
View File

@ -3,7 +3,7 @@
To build this into an executable:
- install pyinstaller:
python3 -m pip install pyinstaller
- then use build_cli_exe.sh to run pyinstaller or execute the following command:
- then use make_cli_exe.sh to run pyinstaller or execute the following command:
pyinstaller --onefile --hidden-import="pkg_resources.py2_warn" --name osxphotos --add-data osxphotos/templates/xmp_sidecar.mako:osxphotos/templates cli.py
Resulting executable will be in "dist/osxphotos"