Daniel Gibbs
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with
8 additions and
0 deletions
-
lgsm/functions/check_steamcmd.sh
-
lgsm/functions/core_steamcmd.sh
|
|
@ -17,5 +17,6 @@ if [ ${shortname} == "ark" ]; then |
|
|
|
fi |
|
|
|
fn_check_steamcmd_dir |
|
|
|
fn_check_steamcmd_dir_legacy |
|
|
|
fn_check_steamcmd_steamapp |
|
|
|
fn_check_steamcmd_user |
|
|
|
fn_check_steamcmd_exec |
|
|
|
|
|
@ -97,6 +97,13 @@ fn_check_steamcmd_dir_legacy(){ |
|
|
|
fi |
|
|
|
} |
|
|
|
|
|
|
|
fn_check_steamcmd_steamapp(){ |
|
|
|
# Check that steamapp directory fixes issue #3481 |
|
|
|
if [ ! -d "${serverfiles}/steamapps" ]; then |
|
|
|
mkdir -p "${serverfiles}/steamapps" |
|
|
|
fi |
|
|
|
} |
|
|
|
|
|
|
|
fn_check_steamcmd_ark(){ |
|
|
|
# Checks if SteamCMD exists in |
|
|
|
# Engine/Binaries/ThirdParty/SteamCMD/Linux |
|
|
|