1
0
mirror of https://github.com/factoriotools/factorio-docker.git synced 2024-11-28 08:38:47 +02:00
factorio-docker-factoriotools/smart_launch.sh
Christophe Vandekerchove 8588fdd6fd Fixed typo
2016-02-26 15:03:32 +01:00

22 lines
441 B
Bash
Executable File

#!/bin/bash
if [ -f /opt/factorio/saves/save.zip ]
then
echo "###"
echo "# Using existing map [save.zip]"
echo "###"
else
echo "###"
echo "# Creating a new map [save.zip]"
echo "###"
/opt/factorio/bin/x64/factorio --create save.zip
echo "###"
echo "# New map created [save.zip]"
echo "###"
fi
echo "###"
echo "# Launching Game"
echo "###"
exec /opt/factorio/bin/x64/factorio --disallow-commands --start-server save.zip