From 58458a852d1ad2c504cddacbcc84f2d69cca9f73 Mon Sep 17 00:00:00 2001 From: Ben Peddell Date: Fri, 29 Jan 2016 21:37:46 +1000 Subject: [PATCH] Fix typo in non-installed mod check Fixes: d37176a Warn when a mod is requested but not installed --- tools/arkmanager | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/arkmanager b/tools/arkmanager index cfc8445..68242d0 100755 --- a/tools/arkmanager +++ b/tools/arkmanager @@ -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."