mirror of
https://github.com/RVC-Project/Retrieval-based-Voice-Conversion-WebUI.git
synced 2025-05-07 04:09:06 +08:00
fix(RVCMD): is_win issue
This commit is contained in:
parent
0f563b7b6d
commit
b7890c3308
@ -188,7 +188,7 @@ def download_all_assets(tmpdir: str, version="0.2.2"):
|
|||||||
}
|
}
|
||||||
system_type = platform.system().lower()
|
system_type = platform.system().lower()
|
||||||
architecture = platform.machine().lower()
|
architecture = platform.machine().lower()
|
||||||
is_win = architecture == "windows"
|
is_win = system_type == "windows"
|
||||||
|
|
||||||
architecture = archs.get(architecture, None)
|
architecture = archs.get(architecture, None)
|
||||||
if not architecture:
|
if not architecture:
|
||||||
|
Loading…
x
Reference in New Issue
Block a user