Merge pull request #374 from klightspeed/1.5-dev#fix-d37176a

Fix typo in non-installed mod check
This commit is contained in:
Fez Vrasta 2016-01-29 12:40:41 +01:00
commit c4c47402c8

View File

@ -204,7 +204,7 @@ checkConfig() {
fi
# Warn if any mods are requested but not installed
if [ -n "$arkserverroot" -a -a -d "${arkserverroot}/ShooterGame/Content/Mods" ]; then
if [ -n "$arkserverroot" -a -d "${arkserverroot}/ShooterGame/Content/Mods" ]; then
for modid in $(getModIds); do
if [ ! -f "${arkserverroot}/ShooterGame/Content/Mods/${modid}/mod.info" ]; then
echo -e "[" "$RED" "ERROR" "$NORMAL" "]" "\tMod ${modid} is requested but not installed. Run 'arkmanager installmod ${modid}' to install this mod."