mirror of
https://github.com/factoriotools/factorio-docker.git
synced 2024-11-12 21:42:48 +01:00
Remove temp (invalid) saves on container start
This commit is contained in:
parent
843bcbff21
commit
877219f9c9
@ -28,6 +28,10 @@ if [ ! -f $CONFIG/map-settings.json ]; then
|
|||||||
cp /opt/factorio/data/map-settings.example.json $CONFIG/map-settings.json
|
cp /opt/factorio/data/map-settings.example.json $CONFIG/map-settings.json
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if find -L $SAVES -iname \*.tmp.zip -mindepth 1 -print | grep -q .; then
|
||||||
|
rm -f $SAVES/*.tmp.zip
|
||||||
|
fi
|
||||||
|
|
||||||
if ! find -L $SAVES -iname \*.zip -mindepth 1 -print | grep -q .; then
|
if ! find -L $SAVES -iname \*.zip -mindepth 1 -print | grep -q .; then
|
||||||
/opt/factorio/bin/x64/factorio \
|
/opt/factorio/bin/x64/factorio \
|
||||||
--create $SAVES/_autosave1.zip \
|
--create $SAVES/_autosave1.zip \
|
||||||
|
Loading…
Reference in New Issue
Block a user