From 914bbdb626f861e0f8cfd5bf9e8668504d4c0ad0 Mon Sep 17 00:00:00 2001 From: Ben Peddell Date: Sun, 8 Nov 2015 06:42:39 +1000 Subject: [PATCH] Add status messages in mod download --- tools/arkmanager | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/arkmanager b/tools/arkmanager index a9c4238..f97c9e8 100755 --- a/tools/arkmanager +++ b/tools/arkmanager @@ -942,11 +942,15 @@ doDownloadMod(){ cd "$steamcmdroot" while true; do + echo "Downloading mod $modid" runSteamCMD +workshop_download_item $mod_appid $modid + echo + echo "Checking mod $modid" if [ ! -d "$moddldir" ]; then break; fi local newsize="`du -s "$moddldir" | cut -f1`" if [ $newsize -eq $dlsize ]; then break; fi dlsize=$newsize + echo "Mod $modid not fully downloaded - retrying" done if [ -f "$modsrcdir/mod.info" ]; then