From 38597e3aa2bd0ed8b9dbfa1daceed69b79b23808 Mon Sep 17 00:00:00 2001 From: Will Greenberg Date: Tue, 26 Mar 2024 12:03:57 -0700 Subject: [PATCH] pebble_artifacts: fix download path --- certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py b/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py index d5972254e..f7c174387 100644 --- a/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py +++ b/certbot-ci/certbot_integration_tests/utils/pebble_artifacts.py @@ -39,7 +39,7 @@ def fetch(workspace: str, http_01_port: int = DEFAULT_HTTP_01_PORT) -> Tuple[str def _fetch_asset(asset: str, suffix: str, assets_path: str) -> str: asset_path = os.path.join(assets_path, '{0}_{1}_{2}'.format(asset, PEBBLE_VERSION, suffix)) if not os.path.exists(asset_path): - asset_url = ('https://github.com/letsencrypt/pebble/releases/download/{0}/{1}_{2}' + asset_url = ('https://github.com/letsencrypt/pebble/releases/download/{0}/{1}-{2}' .format(PEBBLE_VERSION, asset, suffix)) response = requests.get(asset_url, timeout=30) response.raise_for_status()