From e160b7aa3e763192c9b689e3c04c6ec223361de0 Mon Sep 17 00:00:00 2001 From: Joe Kachmar Date: Wed, 6 Jan 2021 00:15:35 -0500 Subject: [PATCH] Preserves snapshot-incomplete with NOPLAN=1 Previously, 'NOPLAN=1' would overwrite the 'snapshot-incomplete.yaml' file. This makes it difficult tweak things (e.g. by explicitly bumping a package in response to maintainer request). Now 'NOPLAN=1' will skip generating 'snapshot-incomplete.yaml' entirely, and it will be up to a previous run w/out a 'NOPLAN' override to set this up properly. --- automated/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/automated/build.sh b/automated/build.sh index dc4e9f29..a5cc0294 100755 --- a/automated/build.sh +++ b/automated/build.sh @@ -108,7 +108,7 @@ then docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator update && curator constraints --target $TARGET && curator snapshot-incomplete --target $TARGET && curator snapshot" fi else - docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot-incomplete --target $TARGET && curator snapshot" + docker run $ARGS_PREBUILD $IMAGE /bin/bash -c "curator snapshot" fi