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

add command for actual unzipping the artifacts

parent db02e0d2
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -67,6 +67,11 @@ def curl_for_artifacts(job_id):
            print(f.read())
        raise subprocess.CalledProcessError(-1, "Unzip check failed")

    # do the actual unzipping
    cmd = [
        "unzip", ARTIFACTS
    ]


if __name__ == "__main__":
    main()
 No newline at end of file