From 13b001fe9bb52adaa8db9abc2931f2faa3964b03 Mon Sep 17 00:00:00 2001 From: Davy Peter Braun <543614+dheavy@users.noreply.github.com> Date: Thu, 28 Mar 2024 15:56:21 +0100 Subject: [PATCH] Fix case issues for OS forking logic --- software/source/server/services/tts/piper/tts.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/software/source/server/services/tts/piper/tts.py b/software/source/server/services/tts/piper/tts.py index 2060847..2ef6c0c 100644 --- a/software/source/server/services/tts/piper/tts.py +++ b/software/source/server/services/tts/piper/tts.py @@ -36,9 +36,9 @@ class Tts: os.makedirs(PIPER_FOLDER_PATH, exist_ok=True) # Determine OS and architecture - OS = platform.system() + OS = platform.system().lower() ARCH = platform.machine() - if OS == "Darwin": + if OS == "darwin": OS = "macos" if ARCH == "arm64": ARCH = "aarch64" @@ -47,7 +47,7 @@ class Tts: else: print("Piper: unsupported architecture") return - elif OS == "Windows": + elif OS == "windows": if ARCH == "AMD64": ARCH = "x64" else: