From 978ab0a448d064ee5e2b36ffbca8459a82ed1e8d Mon Sep 17 00:00:00 2001 From: Sam Date: Fri, 9 Apr 2021 10:32:05 +1000 Subject: [PATCH] FEATURE: ensure pups runs a specific version (#534) Previously we used a "floating" head branch. This makes it impossible to make any breaking changes in pups. --- launcher | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/launcher b/launcher index 173a1d6..0b5a412 100755 --- a/launcher +++ b/launcher @@ -82,6 +82,7 @@ fi cd "$(dirname "$0")" +pups_version='v1.0.3' docker_min_version='17.03.1' docker_rec_version='17.06.2' git_min_version='1.8.0' @@ -653,7 +654,7 @@ run_bootstrap() { run_command="cd /pups &&" if [[ ! "false" = $update_pups ]]; then - run_command="$run_command git pull &&" + run_command="$run_command git pull && git checkout $pups_version &&" fi run_command="$run_command /pups/bin/pups --stdin" -- 2.25.1