1
1
mirror of https://github.com/Eugeny/tabby.git synced 2024-11-10 12:16:34 +03:00

fixed nightly builds (fixes #579)

This commit is contained in:
Eugene Pankov 2018-12-21 21:52:12 +01:00
parent 9aaf670092
commit 6e13914712

View File

@ -6,7 +6,8 @@ const appInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../app/packa
const electronInfo = JSON.parse(fs.readFileSync(path.resolve(__dirname, '../node_modules/electron/package.json')))
exports.version = childProcess.execSync('git describe --tags', {encoding:'utf-8'})
exports.version = exports.version.substring(1, exports.version.length - 1)
exports.version = exports.version.substring(1)
exports.version = exports.version.replace('-g', 'g')
exports.builtinPlugins = [
'terminus-core',