Raymond Toy pushed to branch issue-464-lisp-version-uses-branch-name at cmucl / cmucl Commits: da7c94c6 by Raymond Toy at 2026-02-08T12:05:56-08:00 Fix typo. On the master branch, we were using "git describe --all", but really wanted "git describe --dirty". - - - - - 1 changed file: - bin/git-version.sh Changes: ===================================== bin/git-version.sh ===================================== @@ -40,7 +40,7 @@ else BRANCH="`git rev-parse --abbrev-ref HEAD`" if [ "$BRANCH" = "master" ]; then # On the master branch, use simple git describe --dirty for the version - DEFAULT_VERSION="`git describe --all || git describe 2>/dev/null`" + DEFAULT_VERSION="`git describe --dirty || git describe 2>/dev/null`" else # We're not on the master branch. Do something different. # The option --all allows use to use the the branch name or tag View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/da7c94c626d95643a2df4670... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/da7c94c626d95643a2df4670... You're receiving this email because of your account on gitlab.common-lisp.net.