Skip to content

Commit

Permalink
fix subprocess check for check_git
Browse files Browse the repository at this point in the history
  • Loading branch information
bri committed Feb 13, 2024
1 parent 71e953b commit 5453d76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/do.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ class Colors(Enum):


check_git = subprocess.run(
["git", "rev-parse", "--show-toplevel"], capture_output=True, check=True
["git", "rev-parse", "--show-toplevel"], capture_output=True, check=False
)
LOCAL_FLAKE = os.path.realpath(check_git.stdout.decode().strip())
REMOTE_FLAKE = "github:b-/system"
Expand Down

0 comments on commit 5453d76

Please sign in to comment.