neovim

Neovim text editor
git clone https://git.dasho.dev/neovim.git
Log | Files | Refs | README

commit 46bf1ec791af80badfbd4298d8eb63e4f85546f9
parent 1a07044c1c828edda3e24828782665947fe68049
Author: Dundar Goc <gocdundar@gmail.com>
Date:   Tue, 26 Jul 2022 11:19:52 +0200

build: fix version generation to its previous behavior

This will change the version format from

v0.8.0-dev-nightly-12-g1a07044c1

to

v0.8.0-dev-698-ga5920e98f

Closes https://github.com/neovim/neovim/issues/19499

Diffstat:
Mcmake/GenerateVersion.cmake | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/cmake/GenerateVersion.cmake b/cmake/GenerateVersion.cmake @@ -7,7 +7,7 @@ set(NVIM_VERSION_MEDIUM "v${NVIM_VERSION_MAJOR}.${NVIM_VERSION_MINOR}.${NVIM_VERSION_PATCH}${NVIM_VERSION_PRERELEASE}") execute_process( - COMMAND git describe --first-parent --tags --always --dirty + COMMAND git describe --first-parent --dirty OUTPUT_VARIABLE GIT_TAG ERROR_VARIABLE ERR RESULT_VARIABLE RES