Skip to content

Commit d6eeeba

Browse files
committed
Add check=True to make subprocess call
1 parent 55e41d6 commit d6eeeba

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

update.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ def load_zonefiles(
8484

8585
# First run the makefile, which does all kinds of other random stuff
8686
subprocess.run(
87-
["make", f"DESTDIR={td}", "ZFLAGS=-b slim", "install"], cwd=base_dir
87+
["make", f"DESTDIR={td}", "ZFLAGS=-b slim", "install"],
88+
cwd=base_dir,
89+
check=True,
8890
)
8991

9092
proc = subprocess.run(

0 commit comments

Comments
 (0)