From 7edf9254dca203745d240631589b2f0ecc3e7670 Mon Sep 17 00:00:00 2001 From: Lubos Kocman Date: Tue, 29 Nov 2022 14:46:32 +0100 Subject: [PATCH] publish_distro add --now to set PUBLISH_DELAY=0 * we have to set it to 0 avery single time when we're doing some debuging on pontifex and such approach leaves dirty checkout --- publish_distro | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/publish_distro b/publish_distro index 5eafe029..4a5903cc 100755 --- a/publish_distro +++ b/publish_distro @@ -70,6 +70,10 @@ for arg do do_cleanup=1 date="90 days ago" continue + elif [ "$arg" == '--now' ]; then + PUBLISH_DELAY=0 + shift + continue else newargs+=("$arg") fi