anchoredPath helper (more DRY)

This commit is contained in:
Michael Bradley, Jr 2018-08-17 17:55:39 -05:00
parent 67147f2cad
commit f1edc28f6d
1 changed files with 10 additions and 13 deletions

View File

@ -77,24 +77,21 @@ function removeSync() {
return fs.removeSync.apply(fs.removeSync, arguments);
}
function embarkPath() {
const _embarkPath = process.env.EMBARK_PATH;
if (!_embarkPath) {
const errMsg = 'process.env.EMBARK_PATH was not set'.bold.red;
console.error(errMsg);
function anchoredPath(envAnchor, ...args) {
const anchor = process.env[envAnchor];
if (!anchor) {
console.error(`process.env.${envAnchor} was not set`.bold.red);
process.exit(1);
}
return utils.joinPath(_embarkPath, ...arguments);
return utils.joinPath(anchor, ...args);
}
function embarkPath() {
return anchoredPath('EMBARK_PATH', ...arguments);
}
function dappPath() {
const _dappPath = process.env.DAPP_PATH;
if (!_dappPath) {
const errMsg = 'process.env.DAPP_PATH was not set'.bold.red;
console.error(errMsg);
process.exit(1);
}
return utils.joinPath(_dappPath, ...arguments);
return anchoredPath('DAPP_PATH', ...arguments);
}
function createWriteStream() {