We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a3b401e commit 0dd8620Copy full SHA for 0dd8620
justfile
@@ -8,7 +8,7 @@ yellow := '\033[33m'
8
# Version settings
9
10
git_version := `git rev-parse --short HEAD 2>/dev/null || echo "unknown"`
11
-is_unstable := `git tag --points-at | grep 'v' && echo "" || echo "-UNSTABLE"`
+is_unstable := `git tag --points-at | grep 'v' 2>&1 >/dev/null || echo "-UNSTABLE"`
12
version := `git cliff --bumped-version 2>/dev/null | cut -c2- || echo "0.0.0"` + is_unstable
13
version_placeholder := "0.0.0-UNSTABLE"
14
0 commit comments