Browse Source

Normalize paths for *nix #1264 in gulpfile

1.0
jlukic 10 years ago
parent
commit
d44d41e822
1 changed files with 2 additions and 2 deletions
  1. 4
      gulpfile.js

4
gulpfile.js

@ -147,12 +147,12 @@ var
// add base to values // add base to values
for(var folder in source) { for(var folder in source) {
if(source.hasOwnProperty(folder)) { if(source.hasOwnProperty(folder)) {
source[folder] = base + source[folder];
source[folder] = path.normalize(base + source[folder]);
} }
} }
for(folder in output) { for(folder in output) {
if(output.hasOwnProperty(folder)) { if(output.hasOwnProperty(folder)) {
output[folder] = base + output[folder];
output[folder] = path.normalize(base + output[folder]);
} }
} }
clean = base + clean; clean = base + clean;

Loading…
Cancel
Save