Commit f852d274 authored by Jan Kiene's avatar Jan Kiene
Browse files

actually run the unzip command

parent ff4cb639
Loading
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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)
@@ -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__":