We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents af65fcf + 6c3bda7 commit 8e093d4Copy full SHA for 8e093d4
1 file changed
justfile
@@ -91,10 +91,9 @@ perform-release:
91
clear-revapi:
92
#!/usr/bin/env bash
93
jbang .build/CompatibilityUtils.java clear --version="${RELEASE_VERSION}" --do-not-clear-version-prefix="1."
94
- if [[ $(git diff --stat) != '' ]]; then
95
- git add -A
96
- git status
97
- git commit -m "chore(release): clear RevAPI breaking change justifications"
98
- else
+ if git diff --quiet; then
99
echo "No justifications cleared"
+ else
+ git status
+ git commit -am "chore(release): clear RevAPI breaking change justifications"
100
fi
0 commit comments