diff --git a/minecraft.Dockerfile b/minecraft.Dockerfile index 1c3edc8..36499d4 100644 --- a/minecraft.Dockerfile +++ b/minecraft.Dockerfile @@ -8,7 +8,7 @@ LABEL org.opencontainers.image.authors="Offz " RUN apk add --no-cache ansible rclone wget unzip jq -ARG KEEPUP_VERSION=2.0.0-beta.1 +ARG KEEPUP_VERSION=2.0.0-beta.2 ENV\ KEEPUP=true\ diff --git a/proxy.Dockerfile b/proxy.Dockerfile index 68102bd..b4e0d28 100644 --- a/proxy.Dockerfile +++ b/proxy.Dockerfile @@ -11,7 +11,7 @@ RUN apt-get update -y \ RUN PIPX_HOME=/opt/pipx PIPX_BIN_DIR=/usr/local/bin pipx install --include-deps ansible -ARG KEEPUP_VERSION=2.0.0-beta.1 +ARG KEEPUP_VERSION=2.0.0-beta.2 ENV\ KEEPUP=true\ diff --git a/scripts/dev/keepup b/scripts/dev/keepup index 3de3b76..44b7cd3 100644 --- a/scripts/dev/keepup +++ b/scripts/dev/keepup @@ -32,11 +32,11 @@ if [ "$KEEPUP" = "true" ]; then echo "Running keepup with overrides" cat $pluginVersionsFile $keepupOverridesFile 2>/dev/null\ - | keepup - $keepupDownloadsDir $pluginsDir + | keepup - $keepupDownloadsDir $pluginsDir --hide-progress-bar else echo "Running keepup without overrides" keepup $pluginVersionsFile\ - $keepupDownloadsDir $pluginsDir + $keepupDownloadsDir $pluginsDir --hide-progress-bar fi else echo "KEEPUP is not set to 'true', not running keepup"