From 19cc8946625604802ac46729a2ec2500bcb9d844 Mon Sep 17 00:00:00 2001 From: itzg Date: Mon, 28 Jun 2021 12:13:58 +0000 Subject: [PATCH 1/2] docs: Auto update markdown TOC --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index fb0f9dcd..fca1939f 100644 --- a/README.md +++ b/README.md @@ -145,7 +145,7 @@ By default, the container will download the latest version of the "vanilla" [Min * [Enabling Autopause](#enabling-autopause) * [Running on RaspberryPi](#running-on-raspberrypi) - + From ca8a27babece9c0aa31cb11da66da59c635700e7 Mon Sep 17 00:00:00 2001 From: Austin Keller Date: Fri, 2 Jul 2021 09:55:34 -0700 Subject: [PATCH 2/2] Fix unquoted COPY_MODS_DEST and COPY_CONFIG_DEST variables (#942) --- start-finalSetupMounts | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/start-finalSetupMounts b/start-finalSetupMounts index c96b12cd..2efe364f 100755 --- a/start-finalSetupMounts +++ b/start-finalSetupMounts @@ -25,16 +25,16 @@ fi if [ -d /mods ]; then log "Copying any mods over..." - mkdir -p $COPY_MODS_DEST - rsync -a --out-format="update:%f:Last Modified %M" "${rsyncArgs[@]}" --prune-empty-dirs --update /mods/ $COPY_MODS_DEST + mkdir -p "${COPY_MODS_DEST}" + rsync -a --out-format="update:%f:Last Modified %M" "${rsyncArgs[@]}" --prune-empty-dirs --update /mods/ "${COPY_MODS_DEST}" fi : ${COPY_CONFIG_DEST:="/data/config"} if [ -d /config ]; then - log "Copying any configs from /config to $COPY_CONFIG_DEST" - mkdir -p $COPY_CONFIG_DEST - rsync -a --out-format="update:%f:Last Modified %M" "${rsyncArgs[@]}" --prune-empty-dirs --update /config/ $COPY_CONFIG_DEST + log "Copying any configs from /config to ${COPY_CONFIG_DEST}" + mkdir -p "${COPY_CONFIG_DEST}" + rsync -a --out-format="update:%f:Last Modified %M" "${rsyncArgs[@]}" --prune-empty-dirs --update /config/ "${COPY_CONFIG_DEST}" fi exec ${SCRIPTS:-/}start-finalSetupServerProperties $@