aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
authorAqua-sama <aqua@iserlohn-fortress.net>2018-01-14 15:56:50 +0100
committerAqua-sama <aqua@iserlohn-fortress.net>2018-01-14 15:56:50 +0100
commit5a66a9ad3ff3c11da88fca48101116f7ab1c6eff (patch)
tree6ac772b8b7002f2605bc23282d02f7c84da671f1 /tools
parentCookieInterceptor, making all cookies session cookies (diff)
downloadsmolbote-5a66a9ad3ff3c11da88fca48101116f7ab1c6eff.tar.xz
Minor fixes
Diffstat (limited to 'tools')
-rw-r--r--tools/qbs/GitRepo.js12
1 files changed, 0 insertions, 12 deletions
diff --git a/tools/qbs/GitRepo.js b/tools/qbs/GitRepo.js
deleted file mode 100644
index f3431f9..0000000
--- a/tools/qbs/GitRepo.js
+++ /dev/null
@@ -1,12 +0,0 @@
-var Process = require("qbs.Process")
-
-function read(workingDirectory) {
- var git = new Process();
- git.setWorkingDirectory(workingDirectory);
-
- var meta = Object.create(null);
- git.exec("git", ["describe", "--long"], true);
- meta.version = git.readLine();
-
- return meta;
-}