aboutsummaryrefslogtreecommitdiff
path: root/tools
diff options
context:
space:
mode:
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;
-}