Fix UnboundLocalError for asset_url on Piper install (macOS)

This commit is contained in:
Davy Peter Braun 2024-03-28 14:35:06 +01:00
parent 7d1a4d9777
commit b059cbc0e4
1 changed files with 3 additions and 1 deletions

View File

@ -57,8 +57,10 @@ class Tts:
PIPER_ASSETNAME = f"piper_{OS}_{ARCH}.tar.gz"
PIPER_URL = "https://github.com/rhasspy/piper/releases/latest/download/"
asset_url = f"{PIPER_URL}{PIPER_ASSETNAME}"
if OS == "windows":
asset_url = f"{PIPER_URL}{PIPER_ASSETNAME}".replace(".tar.gz", ".zip")
asset_url = asset_url.replace(".tar.gz", ".zip")
# Download and extract Piper
urllib.request.urlretrieve(asset_url, os.path.join(PIPER_FOLDER_PATH, PIPER_ASSETNAME))