From 58f11011e7f1876b5282e4b97e262384f1968897 Mon Sep 17 00:00:00 2001 From: Paul Kehrer Date: Sat, 3 May 2014 20:48:03 -0500 Subject: Fix jenkins artifact download for release automation --- tasks.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tasks.py b/tasks.py index c205ac88..9ffdc8a7 100644 --- a/tasks.py +++ b/tasks.py @@ -62,7 +62,7 @@ def download_artifacts(): response.raise_for_status() for artifact in response.json()["artifacts"]: response = requests.get( - "{0}artifacts/{1}".format(run["url"], artifact["relativePath"]) + "{0}artifact/{1}".format(run["url"], artifact["relativePath"]) ) out_path = os.path.join( os.path.dirname(__file__), -- cgit v1.2.3