From 5422d45ff2ffd133b4750d2d06b8fe1bade34cf1 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 12 Dec 2015 21:52:55 +0000 Subject: [PATCH 1/2] fixed curl check issue --- CounterStrikeGlobalOffensive/csgoserver | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/CounterStrikeGlobalOffensive/csgoserver b/CounterStrikeGlobalOffensive/csgoserver index 32802fdb2..fcc9eae9c 100755 --- a/CounterStrikeGlobalOffensive/csgoserver +++ b/CounterStrikeGlobalOffensive/csgoserver @@ -113,16 +113,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else From a023b47ac5b8893502d7031f771e43c148392f25 Mon Sep 17 00:00:00 2001 From: Daniel Gibbs Date: Sat, 12 Dec 2015 21:55:08 +0000 Subject: [PATCH 2/2] Fixed curl check bug --- 7DaysToDie/sdtdserver | 14 ++++++++------ ARKSurvivalEvolved/arkserver | 14 ++++++++------ Arma3/arma3server | 14 ++++++++------ BlackMesa/bmdmserver | 14 ++++++++------ BladeSymphony/bsserver | 14 ++++++++------ ChivalryMedievalWarfare/cmwserver | 14 ++++++++------ CounterStrike/csserver | 14 ++++++++------ CounterStrikeConditionZero/csczserver | 14 ++++++++------ CounterStrikeSource/cssserver | 14 ++++++++------ DayOfDefeat/dodserver | 14 ++++++++------ DayOfDefeatSource/dodsserver | 14 ++++++++------ DeathmatchClassic/dmcserver | 14 ++++++++------ DontStarveTogether/dstserver | 14 ++++++++------ DoubleActionBoogaloo/dabserver | 14 ++++++++------ FistfulOfFrags/fofserver | 14 ++++++++------ GarrysMod/gmodserver | 14 ++++++++------ HalfLife2Deathmatch/hl2dmserver | 14 ++++++++------ HalfLifeDeathmatch/hldmserver | 14 ++++++++------ HalfLifeDeathmatchSource/hldmsserver | 14 ++++++++------ Insurgency/insserver | 14 ++++++++------ JustCause2/jc2server | 14 ++++++++------ KillingFloor/kfserver | 14 ++++++++------ Left4Dead/l4dserver | 14 ++++++++------ Left4Dead2/l4d2server | 14 ++++++++------ Mumble/mumbleserver | 14 ++++++++------ NS2Combat/ns2cserver | 14 ++++++++------ NaturalSelection2/ns2server | 14 ++++++++------ NoMoreRoomInHell/nmrihserver | 14 ++++++++------ OpposingForce/opforserver | 14 ++++++++------ PiratesVikingandKnightsII/pvkiiserver | 14 ++++++++------ ProjectZomboid/pzserver | 14 ++++++++------ RedOrchestra/roserver | 14 ++++++++------ Ricochet/ricochetserver | 14 ++++++++------ SeriousSam3BFE/ss3sserver | 14 ++++++++------ StarBound/sbserver | 14 ++++++++------ TeamFortress2/tf2server | 14 ++++++++------ TeamFortressClassic/tfcserver | 14 ++++++++------ TeamSpeak3/ts3server | 14 ++++++++------ Teeworlds/twserver | 14 ++++++++------ Terraria/terrariaserver | 14 ++++++++------ UnrealTournament2004/ut2k4server | 14 ++++++++------ UnrealTournament99/ut99server | 14 ++++++++------ 42 files changed, 336 insertions(+), 252 deletions(-) diff --git a/7DaysToDie/sdtdserver b/7DaysToDie/sdtdserver index 828ef2509..7315b5eae 100644 --- a/7DaysToDie/sdtdserver +++ b/7DaysToDie/sdtdserver @@ -86,16 +86,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/ARKSurvivalEvolved/arkserver b/ARKSurvivalEvolved/arkserver index c25c34cd3..93ce6151c 100644 --- a/ARKSurvivalEvolved/arkserver +++ b/ARKSurvivalEvolved/arkserver @@ -84,16 +84,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Arma3/arma3server b/Arma3/arma3server index a23465a5c..80d8ab72e 100644 --- a/Arma3/arma3server +++ b/Arma3/arma3server @@ -99,16 +99,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/BlackMesa/bmdmserver b/BlackMesa/bmdmserver index e03519482..19b577df8 100644 --- a/BlackMesa/bmdmserver +++ b/BlackMesa/bmdmserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/BladeSymphony/bsserver b/BladeSymphony/bsserver index 7435e8951..fc2e67d84 100644 --- a/BladeSymphony/bsserver +++ b/BladeSymphony/bsserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/ChivalryMedievalWarfare/cmwserver b/ChivalryMedievalWarfare/cmwserver index 2ca77e087..18332a1f8 100644 --- a/ChivalryMedievalWarfare/cmwserver +++ b/ChivalryMedievalWarfare/cmwserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/CounterStrike/csserver b/CounterStrike/csserver index ae9d3db75..92a7108ce 100644 --- a/CounterStrike/csserver +++ b/CounterStrike/csserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/CounterStrikeConditionZero/csczserver b/CounterStrikeConditionZero/csczserver index d69529a84..68f5b36e4 100644 --- a/CounterStrikeConditionZero/csczserver +++ b/CounterStrikeConditionZero/csczserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/CounterStrikeSource/cssserver b/CounterStrikeSource/cssserver index 3727811de..6079cec51 100644 --- a/CounterStrikeSource/cssserver +++ b/CounterStrikeSource/cssserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/DayOfDefeat/dodserver b/DayOfDefeat/dodserver index f57f85114..22ca76075 100644 --- a/DayOfDefeat/dodserver +++ b/DayOfDefeat/dodserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/DayOfDefeatSource/dodsserver b/DayOfDefeatSource/dodsserver index 71a4c2bd5..923d9ea3b 100644 --- a/DayOfDefeatSource/dodsserver +++ b/DayOfDefeatSource/dodsserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/DeathmatchClassic/dmcserver b/DeathmatchClassic/dmcserver index 17aaf53c3..c22fbc94e 100644 --- a/DeathmatchClassic/dmcserver +++ b/DeathmatchClassic/dmcserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/DontStarveTogether/dstserver b/DontStarveTogether/dstserver index 9bfac516a..ea1e832d0 100644 --- a/DontStarveTogether/dstserver +++ b/DontStarveTogether/dstserver @@ -84,16 +84,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/DoubleActionBoogaloo/dabserver b/DoubleActionBoogaloo/dabserver index 6207e2df7..f3bac60ed 100644 --- a/DoubleActionBoogaloo/dabserver +++ b/DoubleActionBoogaloo/dabserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/FistfulOfFrags/fofserver b/FistfulOfFrags/fofserver index 87742eb90..3aa4e88c7 100644 --- a/FistfulOfFrags/fofserver +++ b/FistfulOfFrags/fofserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/GarrysMod/gmodserver b/GarrysMod/gmodserver index 97d812708..98ede6927 100644 --- a/GarrysMod/gmodserver +++ b/GarrysMod/gmodserver @@ -96,16 +96,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/HalfLife2Deathmatch/hl2dmserver b/HalfLife2Deathmatch/hl2dmserver index aacb0aa56..a113a1a76 100644 --- a/HalfLife2Deathmatch/hl2dmserver +++ b/HalfLife2Deathmatch/hl2dmserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/HalfLifeDeathmatch/hldmserver b/HalfLifeDeathmatch/hldmserver index 12a082a45..5e3008f28 100644 --- a/HalfLifeDeathmatch/hldmserver +++ b/HalfLifeDeathmatch/hldmserver @@ -89,16 +89,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/HalfLifeDeathmatchSource/hldmsserver b/HalfLifeDeathmatchSource/hldmsserver index 46e623507..89a5595f6 100644 --- a/HalfLifeDeathmatchSource/hldmsserver +++ b/HalfLifeDeathmatchSource/hldmsserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Insurgency/insserver b/Insurgency/insserver index 290095b1e..775ca961d 100644 --- a/Insurgency/insserver +++ b/Insurgency/insserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/JustCause2/jc2server b/JustCause2/jc2server index 7ae146618..1180bd6d4 100644 --- a/JustCause2/jc2server +++ b/JustCause2/jc2server @@ -83,16 +83,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/KillingFloor/kfserver b/KillingFloor/kfserver index 4a2a26ae6..9c3842a06 100644 --- a/KillingFloor/kfserver +++ b/KillingFloor/kfserver @@ -92,16 +92,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Left4Dead/l4dserver b/Left4Dead/l4dserver index edbb38e38..225b63b8c 100644 --- a/Left4Dead/l4dserver +++ b/Left4Dead/l4dserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Left4Dead2/l4d2server b/Left4Dead2/l4d2server index d404bff02..f3bedff70 100644 --- a/Left4Dead2/l4d2server +++ b/Left4Dead2/l4d2server @@ -89,16 +89,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Mumble/mumbleserver b/Mumble/mumbleserver index 5ad385d64..9c3510839 100644 --- a/Mumble/mumbleserver +++ b/Mumble/mumbleserver @@ -69,16 +69,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/NS2Combat/ns2cserver b/NS2Combat/ns2cserver index 71e8f56ae..2d057a588 100644 --- a/NS2Combat/ns2cserver +++ b/NS2Combat/ns2cserver @@ -95,16 +95,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/NaturalSelection2/ns2server b/NaturalSelection2/ns2server index 670013bcb..8de53b806 100644 --- a/NaturalSelection2/ns2server +++ b/NaturalSelection2/ns2server @@ -95,16 +95,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/NoMoreRoomInHell/nmrihserver b/NoMoreRoomInHell/nmrihserver index 877dfc873..4cb7a6b24 100644 --- a/NoMoreRoomInHell/nmrihserver +++ b/NoMoreRoomInHell/nmrihserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/OpposingForce/opforserver b/OpposingForce/opforserver index 96ddadc13..04b0fdb94 100644 --- a/OpposingForce/opforserver +++ b/OpposingForce/opforserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/PiratesVikingandKnightsII/pvkiiserver b/PiratesVikingandKnightsII/pvkiiserver index c99f67360..f105b3a57 100644 --- a/PiratesVikingandKnightsII/pvkiiserver +++ b/PiratesVikingandKnightsII/pvkiiserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/ProjectZomboid/pzserver b/ProjectZomboid/pzserver index edcb1f247..0d87dd24c 100644 --- a/ProjectZomboid/pzserver +++ b/ProjectZomboid/pzserver @@ -84,16 +84,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/RedOrchestra/roserver b/RedOrchestra/roserver index 3395e1203..57e42f9ac 100644 --- a/RedOrchestra/roserver +++ b/RedOrchestra/roserver @@ -88,16 +88,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Ricochet/ricochetserver b/Ricochet/ricochetserver index d10bd44a6..803fe095e 100644 --- a/Ricochet/ricochetserver +++ b/Ricochet/ricochetserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/SeriousSam3BFE/ss3sserver b/SeriousSam3BFE/ss3sserver index fb8827daa..3e0d707e4 100644 --- a/SeriousSam3BFE/ss3sserver +++ b/SeriousSam3BFE/ss3sserver @@ -87,16 +87,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/StarBound/sbserver b/StarBound/sbserver index fa42b5b4f..9c3263a76 100644 --- a/StarBound/sbserver +++ b/StarBound/sbserver @@ -83,16 +83,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/TeamFortress2/tf2server b/TeamFortress2/tf2server index 864e55b32..bc7f9b985 100644 --- a/TeamFortress2/tf2server +++ b/TeamFortress2/tf2server @@ -95,16 +95,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/TeamFortressClassic/tfcserver b/TeamFortressClassic/tfcserver index e9222454a..135e528a9 100644 --- a/TeamFortressClassic/tfcserver +++ b/TeamFortressClassic/tfcserver @@ -90,16 +90,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/TeamSpeak3/ts3server b/TeamSpeak3/ts3server index d9b9e33c1..2af8ede5b 100644 --- a/TeamSpeak3/ts3server +++ b/TeamSpeak3/ts3server @@ -66,16 +66,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Teeworlds/twserver b/Teeworlds/twserver index 4779119fd..5cfc0ad4a 100644 --- a/Teeworlds/twserver +++ b/Teeworlds/twserver @@ -86,16 +86,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/Terraria/terrariaserver b/Terraria/terrariaserver index 83d42fda9..78e7c5bde 100644 --- a/Terraria/terrariaserver +++ b/Terraria/terrariaserver @@ -85,16 +85,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/UnrealTournament2004/ut2k4server b/UnrealTournament2004/ut2k4server index eba2804f6..b64042f2b 100644 --- a/UnrealTournament2004/ut2k4server +++ b/UnrealTournament2004/ut2k4server @@ -78,16 +78,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else diff --git a/UnrealTournament99/ut99server b/UnrealTournament99/ut99server index 609a2d160..259f6a235 100644 --- a/UnrealTournament99/ut99server +++ b/UnrealTournament99/ut99server @@ -77,16 +77,18 @@ if [ ! -f "${filepath}" ]; then fi githuburl="https://raw.githubusercontent.com/${githubuser}/${githubrepo}/${githubbranch}/${fileurl}" echo -e " fetching ${filename}...\c" - if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then - echo -e "\e[0;31mFAIL\e[0m\n" + if [ "$(command -v curl)" ]||[ "$(which curl >/dev/null 2>&1)" ]||[ -f "/usr/bin/curl" ]||[ -f "/bin/curl" ]; then + : + else + echo -e "\e[0;31mFAIL\e[0m\n" echo "Curl is not installed!" echo -e "" - exit - fi - CURL=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) + exit + fi + curl=$(curl --fail -o "${filepath}" "${githuburl}" 2>&1) if [ $? -ne 0 ]; then echo -e "\e[0;31mFAIL\e[0m\n" - echo " $CURL"|grep "curl:" + echo " ${curl}"|grep "curl:" echo -e "${githuburl}\n" exit else