aboutsummaryrefslogtreecommitdiff
path: root/tools/qbs/GitRepo.js
diff options
context:
space:
mode:
Diffstat (limited to 'tools/qbs/GitRepo.js')
-rw-r--r--tools/qbs/GitRepo.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/qbs/GitRepo.js b/tools/qbs/GitRepo.js
index d7e19a7..e5ecb03 100644
--- a/tools/qbs/GitRepo.js
+++ b/tools/qbs/GitRepo.js
@@ -8,7 +8,7 @@ function read(workingDirectory) {
git.exec("git", ["describe", "--abbrev=0", "--tag"], true);
meta.version = git.readLine();
- git.exec("git", ["describe", "--tag"], true);
+ git.exec("git", ["describe", "--long"], true);
meta.describe = git.readLine();
return meta;