From 7d4535a836e13b6c806a22301e6d7d645a7af0f1 Mon Sep 17 00:00:00 2001 From: Brad Warren Date: Thu, 9 Feb 2023 19:35:37 -0800 Subject: [PATCH] tweak cloudxns condition --- tools/finish_release.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/finish_release.py b/tools/finish_release.py index 8d720bc60..bf6a14d9f 100755 --- a/tools/finish_release.py +++ b/tools/finish_release.py @@ -47,7 +47,7 @@ REPO_ROOT = os.path.dirname(os.path.dirname(os.path.realpath(__file__))) # the current version since we no longer build it. PLUGIN_SNAPS = [os.path.basename(path) for path in glob.glob(os.path.join(REPO_ROOT, 'certbot-dns-*')) - if 'cloudxns' not in path] + if not path.endswith('certbot-dns-cloudxns')] # This list contains the name of all Certbot snaps that should be published to # the stable channel. ALL_SNAPS = ['certbot'] + PLUGIN_SNAPS