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

Commit 79ff7ba

Browse files
author
Andre
committed
fix build issue on osx - still being weird though: open the cli file to run the app! (not the .app file)
1 parent 3cf6696 commit 79ff7ba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

main-unix.spec

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,14 +26,14 @@ exe = EXE(pyz,
2626
a.zipfiles,
2727
a.datas,
2828
[],
29-
name='main',
29+
name='SM64_Randomizer_Generator',
3030
debug=False,
3131
bootloader_ignore_signals=False,
3232
strip=False,
3333
upx=True,
3434
runtime_tmpdir=None,
3535
console=False , icon='favicon.icns')
3636
app = BUNDLE(exe,
37-
name='main.app',
37+
name='SM64_Randomizer_Generator.app',
3838
icon='favicon.icns',
3939
bundle_identifier='com.andremeyer.sm64-randomizer')

tools/build_osx.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ mkdir -p dist
33
set -e # exit on error
44
pyinstaller main-unix.spec
55

6-
mv dist/main dist/SM64\ Randomizer\ Generator
6+
#mv "dist/main" "dist/SM64\ Randomizer\ Generator.app"
77

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

tools/build_unix.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ mkdir -p dist
33
set -e # exit on error
44
pyinstaller main-unix.spec
55

6-
#mv dist/main dist/SM64\ Randomizer\ Generator
6+
#mv "dist/main" "dist/SM64_Randomizer_Generator"
77

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

0 commit comments

Comments
 (0)