fix zluda installer bug

This commit is contained in:
Seunghoon Lee
2025-01-13 15:33:43 +09:00
parent 49f5c8ab12
commit 71aae3aba4
2 changed files with 6 additions and 7 deletions
+3 -3
View File
@@ -41,13 +41,13 @@ def install() -> None:
for info in infos:
if not info.is_dir():
info.filename = os.path.basename(info.filename)
archive.extract(info, '.zluda')
archive.extract(info, path)
os.remove('_zluda')
def uninstall() -> None:
if os.path.exists('.zluda'):
shutil.rmtree('.zluda')
if os.path.exists(path):
shutil.rmtree(path)
def set_blaslt_enabled(enabled: bool):