Skip to content

Commit

Permalink
Bruh.
Browse files Browse the repository at this point in the history
  • Loading branch information
mas6y6 committed Dec 9, 2024
1 parent a126598 commit 55a7ed7
Show file tree
Hide file tree
Showing 2 changed files with 40 additions and 1 deletion.
39 changes: 39 additions & 0 deletions cipher.spec
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# -*- mode: python ; coding: utf-8 -*-


a = Analysis(
['main.py'],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=['cipher'],
noarchive=False,
optimize=0,
)
pyz = PYZ(a.pure)

exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name='cipher',
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
upx_exclude=[],
runtime_tmpdir=None,
console=True,
disable_windowed_traceback=False,
argv_emulation=False,
target_arch=None,
codesign_identity=None,
entitlements_file=None,
icon=['icon.ico'],
)
2 changes: 1 addition & 1 deletion main.py
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ def create_directories(path_list):
os.path.join(api.starterdir, "data", "cache"),
os.path.join(api.starterdir, "data", "config"),
os.path.join(api.starterdir, "data", "cache", "packages"),
os.path.join(api.starterdir,"CipherOS", "data", "cache", "packageswhl")
os.path.join(api.starterdir, "data", "cache", "packageswhl")
]

for i in directories_to_create:
Expand Down

0 comments on commit 55a7ed7

Please sign in to comment.