Remove the NALC experimental branch support

This commit is contained in:
2023-11-26 12:59:33 +01:00
parent 860dacbaf7
commit 8205ff46f9
3 changed files with 128 additions and 125 deletions

View File

@@ -34,7 +34,7 @@ usage() {
echo -e "\t-w --world <name> Custom world name."
echo -e "\t-P --port <port> Custom server port number."
echo -e "\t--url <URL> Custom remote URL."
echo -e "\t--branch <stable|dev|exp> Choose the version to install (stable by default)"
echo -e "\t--branch <stable|dev> Choose the version to install (stable by default)"
echo
echo "License: GPLv3. Please read the LICENSE file."
echo "Author: Sys4 - https://sys4.fr#contact"
@@ -114,9 +114,6 @@ install_game() {
"dev")
git_branch="-b dev"
;;
"exp")
git_branch="-b experimental"
;;
esac
[ -z "$git_branch" ] && error "Invalid branch"
@@ -161,9 +158,6 @@ install_mods() {
"dev")
git_branch="-b dev"
;;
"exp")
git_branch="-b experimental"
;;
esac
[ -z $git_branch ] && error "Invalid branch"