Răsfoiți Sursa

refactor(core): move curl check to main file (#3740)

Christian 4 ani în urmă
părinte
comite
f60c65a744
2 a modificat fișierele cu 6 adăugiri și 6 ștergeri
  1. 0 6
      lgsm/functions/core_dl.sh
  2. 6 0
      linuxgsm.sh

+ 0 - 6
lgsm/functions/core_dl.sh

@@ -597,9 +597,3 @@ fn_dl_latest_release_github(){
 		fi
 	fi
 }
-
-# Check that curl is installed
-if [ ! "$(command -v curl 2>/dev/null)" ]; then
-	echo -e "[ FAIL ] Curl is not installed"
-	exit 1
-fi

+ 6 - 0
linuxgsm.sh

@@ -51,6 +51,12 @@ githubuser="GameServerManagers"
 githubrepo="LinuxGSM"
 githubbranch="master"
 
+# Check that curl is installed before doing anything
+if [ ! "$(command -v curl 2>/dev/null)" ]; then
+	echo -e "[ FAIL ] Curl is not installed"
+	exit 1
+fi
+
 # Core function that is required first.
 core_functions.sh(){
 	functionfile="${FUNCNAME[0]}"