We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b46558 commit 0fa9b47Copy full SHA for 0fa9b47
libuuu/gen_ver.sh
@@ -15,6 +15,6 @@ if [ "$(git rev-parse --is-inside-work-tree 2>/dev/null)" = "true" ];
15
then
16
#echo "In a repo"
17
# Get the version of the last commit of the repo
18
- version=`git describe --tags --long`
+ version=`git describe --long`
19
echo "#define GIT_VERSION \"lib$version\"" > $file_to_write
20
fi
msvc/createversion.bat
@@ -10,7 +10,7 @@ IF ERRORLEVEL 1 (
10
git tag uuu_%APPVEYOR_BUILD_VERSION%
11
)
12
13
- FOR /F "tokens=*" %%a in ('call git describe --tags --long') do (
+ FOR /F "tokens=*" %%a in ('call git describe --long') do (
14
echo #define GIT_VERSION "lib%%a" > %1/gitversion.h
0 commit comments