mirror of
https://github.com/hydralauncher/hydra.git
synced 2025-01-24 22:14:55 +03:00
10 lines
250 B
Python
10 lines
250 B
Python
import shutil
|
|
import platform
|
|
import os
|
|
|
|
if platform.system() == "Windows":
|
|
if not os.path.exists("resources/dist"):
|
|
os.mkdir("resources/dist")
|
|
|
|
shutil.copy("node_modules/ps-list/vendor/fastlist-0.3.0-x64.exe", "resources/dist/fastlist.exe")
|