Skip to content

Commit cb37179

Browse files
committed
📦🐛 Fix git status check condition in check-and-push recipe
1 parent 7ff0e84 commit cb37179

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

project_name/justfile.jinja

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ prepare:
3030
uv run pre-commit install
3131

3232
check-and-push:
33-
[ -n "$(git status --porcelain)" ]
33+
[ -z "$(git status --porcelain)" ]
3434
just check
3535
git push --follow-tags
3636

0 commit comments

Comments
 (0)