diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-05-15 16:27:42 +0200 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2017-05-15 16:27:42 +0200 |
commit | 038ce9ee745a25f8620616903331669ac743f029 (patch) | |
tree | 2edcfa1019374f6aeaaf6df3c5ed9c042373fd06 /tools/qbs | |
parent | Reenabled Blocker (diff) | |
download | smolbote-038ce9ee745a25f8620616903331669ac743f029.tar.xz |
Updated CONTRIBUTING
Diffstat (limited to 'tools/qbs')
-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; |