Raymond Toy pushed to branch issue-464-lisp-version-uses-branch-name at cmucl / cmucl Commits: 3aac13e4 by Raymond Toy at 2026-01-15T17:51:44-08:00 Fix typo: Missing closing backtick - - - - - 1 changed file: - bin/git-version.sh Changes: ===================================== bin/git-version.sh ===================================== @@ -41,7 +41,7 @@ else # we have to remove everything before the first slash which # contains things like "tag/" or "head/". GIT_DESC="`(git describe --all --dirty || git describe 2>/dev/null)`" - GIT_HASH="`echo ${GIT_DESC} | sed 's;^[^/]\+/;;' 2>/dev/null" + GIT_HASH="`echo ${GIT_DESC} | sed 's;^[^/]\+/;;' 2>/dev/null`" BRANCH="`git rev-parse --abbrev-ref HEAD`*" if [ `expr "X$GIT_HASH" : 'Xsnapshot-[0-9][0-9][0-9][0-9]-[01][0-9]'` != 0 ]; then View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/3aac13e4f4841970bd2b163c... -- View it on GitLab: https://gitlab.common-lisp.net/cmucl/cmucl/-/commit/3aac13e4f4841970bd2b163c... You're receiving this email because of your account on gitlab.common-lisp.net.
participants (1)
-
Raymond Toy (@rtoy)