Skip to content

Commit 90608c0

Browse files
committed
chore(build): check for errors when running command
`os.system` happily returns an exit code if the command you're running fails: ``` $ python >>> import os >>> os.system("echo uh oh && exit 42"); print("This happened") uh oh 10752 This happened ```
1 parent 3e73070 commit 90608c0

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

docs/hooks.py

+8-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,10 @@
1-
import os
1+
import subprocess
2+
from pathlib import Path
23

34
def on_pre_build(**kwargs):
4-
os.system('nix run .#treefmt -- --help > ./snippets/usage.txt')
5+
with Path("./snippets/usage.txt").open("w") as f:
6+
subprocess.run(
7+
["nix", "run", ".#treefmt", "--", "--help"],
8+
stdout=f,
9+
check=True,
10+
)

0 commit comments

Comments
 (0)