Skip to content
This repository has been archived by the owner on Feb 16, 2024. It is now read-only.

Commit

Permalink
Update build.spec
Browse files Browse the repository at this point in the history
  • Loading branch information
ohitstom authored Feb 16, 2024
1 parent 2121d96 commit cc1aa15
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion build.spec
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,9 @@ a = Analysis(['Spicetify-Easyinstall.py'],
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)

to_exclude = {'opengl32sw.dll'}
a.binaries -= [(os.path.normcase(x), None, None) for x in to_exclude]

pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
Expand All @@ -27,7 +30,8 @@ exe = EXE(pyz,
upx=True,
console=False,
uac_admin=False,
icon='resources/icons/icon.ico')
icon='resources/icons/icon.ico'),
contents_directory="resources"

coll = COLLECT(exe,
a.binaries,
Expand Down

0 comments on commit cc1aa15

Please sign in to comment.