mirror of
https://github.com/GameServerManagers/LinuxGSM.git
synced 2025-01-07 03:26:50 +08:00
Merge remote-tracking branch 'refs/remotes/origin/master' into gmod-content-mounting
This commit is contained in:
commit
f24ce0a830
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user