From 5a66a9ad3ff3c11da88fca48101116f7ab1c6eff Mon Sep 17 00:00:00 2001 From: Aqua-sama Date: Sun, 14 Jan 2018 15:56:50 +0100 Subject: Minor fixes --- tools/qbs/GitRepo.js | 12 ------------ 1 file changed, 12 deletions(-) delete mode 100644 tools/qbs/GitRepo.js (limited to 'tools') 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; -} -- cgit v1.2.1