Merge branch 'dev' of https://gitea.verdnatura.es/verdnatura/salix into 2446-ticket_index_overlap_ref_and_state
gitea/salix/pipeline/head This commit looks good
Details
gitea/salix/pipeline/head This commit looks good
Details
This commit is contained in:
commit
f7a5b4bdce
|
@ -13,14 +13,15 @@ let configFiles = [
|
|||
];
|
||||
|
||||
for (let configFile of configFiles) {
|
||||
const filePath = path.join(__dirname, configFile);
|
||||
if (fs.existsSync(filePath)) {
|
||||
const conf = require(filePath);
|
||||
if (!configFile.includes(configPath))
|
||||
configFile = path.join(__dirname, configFile);
|
||||
|
||||
if (fs.existsSync(configFile)) {
|
||||
const conf = require(configFile);
|
||||
for (let prop in conf)
|
||||
Object.assign(config[prop], conf[prop]);
|
||||
}
|
||||
}
|
||||
|
||||
config.env = env;
|
||||
|
||||
module.exports = config;
|
||||
|
|
Loading…
Reference in New Issue