diff options
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qbs/GitRepo.js | 2 |
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; |