diff --git a/lib/gulp/copy.js b/lib/gulp/copy.js index 725de3f..48e291c 100644 --- a/lib/gulp/copy.js +++ b/lib/gulp/copy.js @@ -15,7 +15,7 @@ function copy(cb) { // Add all dest files/folders to folders array config.copy.forEach(location => { - c(location.src, location.dest, (err, files) => { + c(config.src_base_path + location.src, config.dest_base_path + location.dest, (err, files) => { if (err) { throw err; }