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.
This commit is contained in:
Kumi 2024-08-02 19:54:20 +02:00
parent 6b756e04bb
commit 042ce52b25
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -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: