Browse Source

Fixes issue with defaults not loading when no config file

pull/1191/head
jlukic 10 years ago
parent
commit
483ba73247
1 changed files with 4 additions and 0 deletions
  1. 4
      gulpfile.js

4
gulpfile.js

@ -92,6 +92,10 @@ catch(error) {
var
getConfigValues = function() {
if(!config) {
config = defaults;
}
// shorthand
base = config.base;
clean = config.paths.clean;

Loading…
Cancel
Save