From 042ce52b255210b6e8e1b7a706e5435f9c9ff5a5 Mon Sep 17 00:00:00 2001 From: Kumi Date: Fri, 2 Aug 2024 19:54:20 +0200 Subject: [PATCH] fix: use auto-install for server setup Updated installation script to use "auto-install" instead of "install" to streamline server setup process. This change aims to enhance automation and reduce manual intervention steps during server installations. No functional difference expected but improves clarity in server management tasks. --- coffeemachine/servers/views.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/coffeemachine/servers/views.py b/coffeemachine/servers/views.py index 081a6e1..4683106 100644 --- a/coffeemachine/servers/views.py +++ b/coffeemachine/servers/views.py @@ -71,7 +71,7 @@ class InstallServerView(View): [script_path, server.game], cwd=server.installation_path ) subprocess.run( - [f"./{server.game}server", "install"], + [f"./{server.game}server", "auto-install"], cwd=server.installation_path, ) else: