Raymond Toy pushed to branch issue-464-lisp-version-uses-branch-name at cmucl / cmucl Commits: 8bba47ec by Raymond Toy at 2026-02-26T07:23:54-08:00 Handle everything else. We forgot a default case for the version. We handled snapshots, releases, and CI pipelines, but forgot branch names. Since we can't know what a branch name looks like (or anything else), the final default case just takes the hash as is. (Stupidly, branch names weren't handled in this latest version. They were before.) - - - - - 1 changed file: - bin/git-version.sh Changes: ===================================== bin/git-version.sh ===================================== @@ -67,6 +67,10 @@ else # know this was done via CI. DEFAULT_VERSION="ci-${GIT_HASH}" ;; + *) + # Everything else is taken as is. + DEFAULT_VERSION="${GIT_HASH}" + ;; esac fi View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/8bba47ecc6c04ab9f9c701d4... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/8bba47ecc6c04ab9f9c701d4... You're receiving this email because of your account on gitlab.common-lisp.net.