Skip to content

Commit

Permalink
#4174, remove path.sep from paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jlukic committed Jul 8, 2016
1 parent 3f51237 commit 961b4c9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tasks/config/project/config.js
Expand Up @@ -92,9 +92,9 @@ module.exports = {

config.paths.assets = {
source : '../../themes', // source asset path is always the same
uncompressed : '.' + path.sep + path.relative(config.paths.output.uncompressed, config.paths.output.themes).replace(/\\/g, '/'),
compressed : '.' + path.sep + path.relative(config.paths.output.compressed, config.paths.output.themes).replace(/\\/g, '/'),
packaged : '.' + path.sep + path.relative(config.paths.output.packaged, config.paths.output.themes).replace(/\\/g, '/')
uncompressed : './' + path.relative(config.paths.output.uncompressed, config.paths.output.themes).replace(/\\/g, '/'),
compressed : './' + path.relative(config.paths.output.compressed, config.paths.output.themes).replace(/\\/g, '/'),
packaged : './' + path.relative(config.paths.output.packaged, config.paths.output.themes).replace(/\\/g, '/')
};

/*--------------
Expand Down

0 comments on commit 961b4c9

Please sign in to comment.