Skip to content

Commit

Permalink
do not confound STDERR and STDOUT
Browse files Browse the repository at this point in the history
super minor.
  • Loading branch information
hmaarrfk authored Nov 5, 2024
1 parent 2c8a00f commit f23c084
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/hatch_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def is_git_repo():

def check_git_status():
p = run(
"git status --porcelain", shell=True, cwd=root_dir, stdout=PIPE, stderr=STDOUT
"git status --porcelain", shell=True, cwd=root_dir, stdout=PIPE, stderr=PIPE
)
git_status = p.stdout.decode(errors="ignore")
# print("Git status:\n" + git_status)
Expand Down

0 comments on commit f23c084

Please sign in to comment.