From b0cc60971e2e4ef5f747da00d3fa550a24c49b29 Mon Sep 17 00:00:00 2001 From: jutty Date: Wed, 18 Feb 2026 05:22:03 -0300 Subject: [PATCH] Print git status if worktree is dirty --- .justfile | 1 + Cargo.toml | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.justfile b/.justfile index b5494d3..edcde31 100644 --- a/.justfile +++ b/.justfile @@ -226,6 +226,7 @@ verify: export RUSTFLAGS=${RUSTFLAGS:-"-Dwarnings"} if [ -n "$(git status --porcelain)" ]; then echo "Git working tree is dirty: Commit or stash your changes first" + git status exit 1 fi {{ just_cmd }} version-assess format-assess lint-assess check test cover-assess diff --git a/Cargo.toml b/Cargo.toml index fe2cf4a..3757ff0 100644 --- a/Cargo.toml +++ b/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "en" -version = "0.1.0" +version = "0.1.1" description = "A non-linear writing instrument." license = "AGPL-3.0-only"