Create steamapps directory when installing

This should fix #1184
This commit is contained in:
Ben Peddell 2021-06-10 21:52:00 +10:00 committed by GitHub
parent 566161d5a4
commit eafc078400
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1620,6 +1620,7 @@ doInstall() {
# If it does not exist, try create it
echo -e "Creating the ARK server root directory ($arkserverroot)"
mkdir -p "$arkserverroot"
mkdir -p "${arkserverroot}/steamapps"
if [ ! $? ] ; then
echo -e "[" "$RED" "ERROR" "$NORMAL" "]" "\tFailed to create the defined ARK server root directory ($arkserverroot)"
exit 1