From 68be0b11fbb6fc9b37dbf8b5d2eb3c5a88c651d7 Mon Sep 17 00:00:00 2001 From: Padawan-GM Date: Wed, 17 Dec 2025 17:55:48 +0100 Subject: [PATCH] Fixed start command file parsing --- controllers.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controllers.py b/controllers.py index d5d9a86..454fbdd 100644 --- a/controllers.py +++ b/controllers.py @@ -17,7 +17,7 @@ from logs import logger class ProcessController: def __init__(self): self.start_command: list[str] = shlex.split( - Path(Config.START_COMMAND_FILE).read_text() + Path(Config.START_COMMAND_FILE).read_text().replace("\n", " ") ) self.cwd = Config.SERVER_PATH self.process: Popen | None = None