Browse Source

Debugging installer

pull/1785/head
jlukic 9 years ago
parent
commit
ea36185cd2
1 changed files with 2 additions and 2 deletions
  1. 4
      tasks/config/project/config.js

4
tasks/config/project/config.js

@ -61,7 +61,6 @@ module.exports = {
configPath = this.getPath(),
folder
;
console.log('start extend' , defaults.paths);
// resolve source paths
for(folder in config.paths.source) {
@ -75,10 +74,11 @@ module.exports = {
for(folder in config.paths.output) {
if(config.paths.output.hasOwnProperty(folder)) {
// full path is (config location + base + path)
console.log('start extend' , defaults.paths.output[folder]);
config.paths.output[folder] = path.resolve(path.join(configPath, config.base, config.paths.output[folder]));
console.log('end extend' , defaults.paths.output[folder]);
}
}
console.log('end extend' , defaults.paths);
// resolve "clean" command path
config.paths.clean = path.resolve( path.join(configPath, config.base, config.paths.clean) );

Loading…
Cancel
Save