debian-mirror-gitlab/config/helpers/is_ee_env.js

10 lines
260 B
JavaScript
Raw Normal View History

2019-07-07 11:18:12 +05:30
const fs = require('fs');
const path = require('path');
const ROOT_PATH = path.resolve(__dirname, '../..');
module.exports =
process.env.IS_GITLAB_EE !== undefined
? JSON.parse(process.env.IS_GITLAB_EE)
: fs.existsSync(path.join(ROOT_PATH, 'ee'));