Removes extra space

This commit is contained in:
Hyatt 2019-10-30 22:22:38 -05:00
parent 8b453b155c
commit 274d377e9f
Signed by: nhyatt
GPG Key ID: C50D0BBB5BC40BEA

View File

@ -70,6 +70,10 @@ RUN \\
${AlpineGlibcBinPackageFilename} \\
${AlpineGlibcI18nPackageFilename} \\
${FactorioFileName} && \\
ln -s \${SAVES} /opt/factorio/saves && \\
ln -s \${MODS} /opt/factorio/mods && \\
ln -s \${SCENARIOS} /opt/factorio/scenarios && \\
ln -s \${SCRIPTOUTPUT} /opt/factorio/script-output && \\
addgroup -g 1000 -S factorio && \\
adduser -u 1000 -G factorio -s /bin/sh -SDH factorio && \\
chown -R factorio:factorio /opt/factorio /factorio && \\
@ -82,7 +86,7 @@ RUN \\
"[ ! -f \\\"\${CONFIG}/server-settings.json\\\" ] && cp /opt/factorio/data/server-settings.example.json \${CONFIG}/server-settings.json" \\
"[ ! -f \\\"\${CONFIG}/map-gen-settings.json\\\" ] && cp /opt/factorio/data/map-gen-settings.example.json \${CONFIG}/map-gen-settings.json" \\
"[ ! -f \\\"\${CONFIG}/map-settings.json\\\" ] && cp /opt/factorio/data/map-settings.example.json \${CONFIG}/map-settings.json" \\
"if find -L \${SAVES} -iname \\*.tmp.zip -mindepth 1 -print | grep -q .; then " \\
"if find -L \${SAVES} -iname \\*.tmp.zip -mindepth 1 -print | grep -q .; then" \\
" rm -f \${SAVES}/*.tmp.zip" \\
"fi" \\
"if ! find -L \${SAVES} -iname \\*.tmp.zip -mindepth 1 -print | grep -q .; then" \\