Skip to content
This repository has been archived by the owner on Oct 28, 2022. It is now read-only.

Commit

Permalink
fix build issue on osx - still being weird though: open the cli file …
Browse files Browse the repository at this point in the history
…to run the app! (not the .app file)
  • Loading branch information
Andre committed Jul 2, 2021
1 parent 3cf6696 commit 79ff7ba
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions main-unix.spec
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ exe = EXE(pyz,
a.zipfiles,
a.datas,
[],
name='main',
name='SM64_Randomizer_Generator',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
runtime_tmpdir=None,
console=False , icon='favicon.icns')
app = BUNDLE(exe,
name='main.app',
name='SM64_Randomizer_Generator.app',
icon='favicon.icns',
bundle_identifier='com.andremeyer.sm64-randomizer')
2 changes: 1 addition & 1 deletion tools/build_osx.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mkdir -p dist
set -e # exit on error
pyinstaller main-unix.spec

mv dist/main dist/SM64\ Randomizer\ Generator
#mv "dist/main" "dist/SM64\ Randomizer\ Generator.app"

# pack as zip
VERSION="$(python -c 'from __version__ import __version__; print(__version__)')"
Expand Down
2 changes: 1 addition & 1 deletion tools/build_unix.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ mkdir -p dist
set -e # exit on error
pyinstaller main-unix.spec

#mv dist/main dist/SM64\ Randomizer\ Generator
#mv "dist/main" "dist/SM64_Randomizer_Generator"

# pack as zip
VERSION="$(python -c 'from __version__ import __version__; print(__version__)')"
Expand Down

0 comments on commit 79ff7ba

Please sign in to comment.