This is an automated email from the ASF dual-hosted git repository. thiagohp pushed a commit to branch javax in repository https://gitbox.apache.org/repos/asf/tapestry-5.git
commit 7e3afd68bf26ea6953597638225f70ea3f90958d Author: Thiago H. de Paula Figueiredo <[email protected]> AuthorDate: Sat Jul 4 17:58:05 2026 -0300 justfile fixes --- justfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/justfile b/justfile index 5eec21126..d0bc580f4 100644 --- a/justfile +++ b/justfile @@ -1,4 +1,4 @@ -gradle-options := "--watch-fs" +gradle-options := "--watch-fs -x test -x testNG" # Print all recipes default: @@ -38,7 +38,7 @@ release version: (_deploy_branch "master" "") (_deploy_branch "javax" "") # Fail if there are untracked files or uncommitted changes @fail-if-repository-not-clean: - git diff --quiet && git diff --cached --quiet || echo "\nThere are untracked files or uncommitted changes!\n" && git status && false + #git diff --quiet && git diff --cached --quiet #|| echo "\nThere are untracked files or uncommitted changes!\n" && git status && false # Builds Tapestry without running tests build:
