Welcome to mirror list, hosted at ThFree Co, Russian Federation.

gitlab.xiph.org/xiph/opus.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/win32
diff options
context:
space:
mode:
authorRon <ron@debian.org>2013-11-27 21:48:45 +0400
committerRon <ron@debian.org>2013-11-27 21:48:45 +0400
commita1740d9ad176ed3716b5c35cba6c47da733b789c (patch)
treea8784b55e290e2ef8039ac860e17b187559e3e8a /win32
parenta8fa0cb629f076f546748673378694b8416e6c53 (diff)
Drop the use of --always to git-describe
This is a partial revert of c435f06b308e52d7a5d2aad9eec98a1541832b47, since it didn't actually fix the original problem with shallow clones. It returns just a hash, not something we (currently) can extract as a version string in the form things are expecting.
Diffstat (limited to 'win32')
-rw-r--r--win32/genversion.bat2
1 files changed, 1 insertions, 1 deletions
diff --git a/win32/genversion.bat b/win32/genversion.bat
index e8ebb026..a9b9353a 100644
--- a/win32/genversion.bat
+++ b/win32/genversion.bat
@@ -2,7 +2,7 @@
setlocal enableextensions enabledelayedexpansion
-for /f %%v in ('git --git-dir="%~dp0..\.git" describe --tags --match "v*" --always') do set version=%%v
+for /f %%v in ('git --git-dir="%~dp0..\.git" describe --tags --match "v*"') do set version=%%v
if not "%version%"=="" goto :gotversion