Skip to content

Commit

Permalink
Update standalone.spec
Browse files Browse the repository at this point in the history
  • Loading branch information
oldnapalm committed Feb 15, 2024
1 parent 0f4fb62 commit c75d2b9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions standalone.spec
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ a = Analysis(['standalone.py'],
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
a.binaries = [x for x in a.binaries if not os.path.dirname(x[1]).startswith("C:\\hostedtoolcache\\windows")]
a.binaries = [x for x in a.binaries if not 'Java_Temurin-Hotspot_jdk' in x[1]]
a.datas += Tree('cdn', prefix='cdn')
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
Expand All @@ -34,7 +34,7 @@ exe = EXE(pyz,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=['greenlet\\*.pyd'],
upx_exclude=['greenlet\\*.pyd', '_uuid.pyd', 'python3.dll'],
runtime_tmpdir=None,
console=True )

Expand Down

0 comments on commit c75d2b9

Please sign in to comment.