From 274d377e9f556f2e3856394b0eda2574d87a0f3e Mon Sep 17 00:00:00 2001 From: TheSp1der Date: Wed, 30 Oct 2019 22:22:38 -0500 Subject: [PATCH] Removes extra space --- build-factario-container.jenkins | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/build-factario-container.jenkins b/build-factario-container.jenkins index 6ef1cc9..8c21195 100644 --- a/build-factario-container.jenkins +++ b/build-factario-container.jenkins @@ -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" \\