gameservergame-servergame-servershacktoberfestdedicated-game-serversgamelinuxgsmserverbashgaminglinuxmultiplayer-game-servershell
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
29 lines
579 B
29 lines
579 B
#!/bin/bash
|
|
# LGSM core_dl.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: http://gameservermanagers.com
|
|
lgsm_version="050216"
|
|
|
|
# Description: Deals with all downloads for LGSM.
|
|
|
|
fn_curl_dl(){
|
|
curl_filename=$1
|
|
curl_filepath=$2
|
|
curl_url=$3
|
|
echo "curl_filename $curl_filename"
|
|
echo "curl_url ${curl_url}"
|
|
echo "curl_filepath ${curl_filepath}"
|
|
|
|
echo -ne "Downloading ${mm_file_latest}...\c"
|
|
|
|
curl_dl=$(curl --fail -o "${curl_filepath}" "${curl_url}" )
|
|
exitcode=$?
|
|
if [ $? -ne 0 ]; then
|
|
fn_printfaileol
|
|
echo "${curl_dl}"
|
|
echo -e "${url}\n"
|
|
exit ${exitcode}
|
|
else
|
|
fn_printokeol
|
|
fi
|
|
}
|