update-local-flakes: Fail early
This commit is contained in:
parent
ee4e45905a
commit
5d4908d2e2
|
@ -51,7 +51,8 @@ def process_flake(flake: str) -> None:
|
|||
"--update-input",
|
||||
dep_name,
|
||||
]
|
||||
subprocess.run(cmd, cwd=dir)
|
||||
p = subprocess.run(cmd, cwd=dir)
|
||||
p.check_returncode()
|
||||
|
||||
|
||||
if __name__ == "__main__":
|
||||
|
|
Loading…
Reference in a new issue