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:
parent
6b756e04bb
commit
042ce52b25
1 changed files with 1 additions and 1 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue