stardew-multiplayer-docker/docker/scripts/tail-smapi-log.sh
norimicry 505c7ec09a fix
2021-01-24 00:04:36 +01:00

13 lines
329 B
Bash

#!/bin/sh
echo "-- SMAPI Log: Starting"
# Wait for SMAPI log and tail infinitely
while [ ! -f "/config/xdg/config/StardewValley/ErrorLogs/SMAPI-latest.txt" ]; do
echo "-- SMAPI Log: Waiting for log to appear";
sleep 5;
done
echo "-- SMAPI Log: Tailing"
tail -f /config/xdg/config/StardewValley/ErrorLogs/SMAPI-latest.txt