diff options
author | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-14 15:56:50 +0100 |
---|---|---|
committer | Aqua-sama <aqua@iserlohn-fortress.net> | 2018-01-14 15:56:50 +0100 |
commit | 5a66a9ad3ff3c11da88fca48101116f7ab1c6eff (patch) | |
tree | 6ac772b8b7002f2605bc23282d02f7c84da671f1 /tools | |
parent | CookieInterceptor, making all cookies session cookies (diff) | |
download | smolbote-5a66a9ad3ff3c11da88fca48101116f7ab1c6eff.tar.xz |
Minor fixes
Diffstat (limited to 'tools')
-rw-r--r-- | tools/qbs/GitRepo.js | 12 |
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; -} |