aboutsummaryrefslogtreecommitdiff
path: root/qbs
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2017-02-17 17:11:33 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2017-02-17 17:11:33 +0100
commita8a168ec6ccfa3a8ec4243ebf0ccaaf86a13b2a2 (patch)
tree9f1d9c4a79816a7e9003935362ca79d19304c5c6 /qbs
parentAdded deprecated API warnings (diff)
downloadsmolbote-a8a168ec6ccfa3a8ec4243ebf0ccaaf86a13b2a2.tar.xz
Moved smolbote.qbs
Diffstat (limited to 'qbs')
-rw-r--r--qbs/GitRepo.js15
1 files changed, 15 insertions, 0 deletions
diff --git a/qbs/GitRepo.js b/qbs/GitRepo.js
new file mode 100644
index 0000000..d7e19a7
--- /dev/null
+++ b/qbs/GitRepo.js
@@ -0,0 +1,15 @@
+var Process = loadExtension("qbs.Process")
+
+function read(workingDirectory) {
+ var git = new Process();
+ git.setWorkingDirectory(workingDirectory);
+
+ var meta = Object.create(null);
+ git.exec("git", ["describe", "--abbrev=0", "--tag"], true);
+ meta.version = git.readLine();
+
+ git.exec("git", ["describe", "--tag"], true);
+ meta.describe = git.readLine();
+
+ return meta;
+}