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.
22 lines
596 B
22 lines
596 B
#!/bin/bash
|
|
# LGSM fn_update_functions.sh function
|
|
# Author: Daniel Gibbs
|
|
# Website: https://gameservermanagers.com
|
|
lgsm_version="210516"
|
|
|
|
# Description: LEGACY FUNCTION Deletes the functions dir to allow re-downloading of functions from GitHub.
|
|
|
|
fn_print_dots "Updating functions"
|
|
fn_scriptlog "Updating functions"
|
|
sleep 1
|
|
echo -ne "\n"
|
|
rm -rfv "${rootdir}/functions/"*
|
|
exitcode=$?
|
|
if [ "${exitcode}" == "0" ]; then
|
|
fn_print_ok "Updating functions"
|
|
fn_scriptlog "Success! Updating functions"
|
|
else
|
|
fn_print_fail "Updating functions"
|
|
fn_scriptlog "Failure! Updating functions"
|
|
fi
|
|
echo -ne "\n"
|