diff options
author | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-03 19:11:03 -0700 |
---|---|---|
committer | Alex Gaynor <alex.gaynor@gmail.com> | 2014-05-03 19:11:03 -0700 |
commit | 94e405396ebd7efd9f4958416dfa38d49fcfbe21 (patch) | |
tree | 727db1f9b3cc5ad953b1f993cee474e713c2a649 /tasks.py | |
parent | 13936fd4732652e8f2f191b6cd9999d3224a6805 (diff) | |
parent | 58f11011e7f1876b5282e4b97e262384f1968897 (diff) | |
download | cryptography-94e405396ebd7efd9f4958416dfa38d49fcfbe21.tar.gz cryptography-94e405396ebd7efd9f4958416dfa38d49fcfbe21.tar.bz2 cryptography-94e405396ebd7efd9f4958416dfa38d49fcfbe21.zip |
Merge pull request #1009 from reaperhulk/fix-artifact-download
Fix jenkins artifact download for release automation
Diffstat (limited to 'tasks.py')
-rw-r--r-- | tasks.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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__), |