Loading ci/setup_pages.py +1 −1 Original line number Diff line number Diff line Loading @@ -57,7 +57,6 @@ def curl_for_artifacts(job_id): "--output", ARTIFACTS, ] print(" ".join(cmd)) subprocess.run(cmd, check=True) # check for valid archive (if not, it is likely a 404 page, then display that) Loading @@ -71,6 +70,7 @@ def curl_for_artifacts(job_id): # do the actual unzipping cmd = ["unzip", ARTIFACTS] subprocess.run(cmd, check=True) if __name__ == "__main__": Loading Loading
ci/setup_pages.py +1 −1 Original line number Diff line number Diff line Loading @@ -57,7 +57,6 @@ def curl_for_artifacts(job_id): "--output", ARTIFACTS, ] print(" ".join(cmd)) subprocess.run(cmd, check=True) # check for valid archive (if not, it is likely a 404 page, then display that) Loading @@ -71,6 +70,7 @@ def curl_for_artifacts(job_id): # do the actual unzipping cmd = ["unzip", ARTIFACTS] subprocess.run(cmd, check=True) if __name__ == "__main__": Loading