Fixed start command file parsing
This commit is contained in:
parent
6a80582fbe
commit
68be0b11fb
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue