Skip to content

Commit

Permalink
Fix bug in push_to_artifactory.py, create a necessary dir
Browse files Browse the repository at this point in the history
  • Loading branch information
Felixoid committed Mar 17, 2022
1 parent 0f01267 commit 89a6216
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/ci/push_to_artifactory.py
Original file line number Diff line number Diff line change
Expand Up @@ -304,6 +304,7 @@ def process_tgz(s3: S3, art_client: Artifactory):
def main():
logging.basicConfig(level=logging.INFO, format="%(asctime)s %(message)s")
args = parse_args()
os.makedirs(TEMP_PATH, exist_ok=True)
s3 = S3(
args.bucket_name,
args.pull_request,
Expand Down

0 comments on commit 89a6216

Please sign in to comment.