Skip to content

Commit b9064c5

Browse files
committed
Bazel: fail install on ripunzip failing
1 parent f35f077 commit b9064c5

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

misc/bazel/internal/install.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,4 +34,4 @@
3434
assert zip, f"missing prefix for {prefix}, you should use prefix:zip format"
3535
dest = destdir / prefix
3636
dest.mkdir(parents=True, exist_ok=True)
37-
subprocess.run([ripunzip, "unzip-file", zip, "-d", dest])
37+
subprocess.run([ripunzip, "unzip-file", zip, "-d", dest], check=True)

0 commit comments

Comments
 (0)