Skip to content

Commit

Permalink
Fix import file path
Browse files Browse the repository at this point in the history
  • Loading branch information
zckrs committed Jun 21, 2015
1 parent b1a5baf commit dd91054
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/templates/gulp/_styles.js
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ gulp.task('styles', function () {

var injectOptions = {
transform: function(filePath) {
filePath = filePath.replace(path.join(conf.paths.src, '/app/'), '');
return '@import \'' + filePath + '\';';
filePath = filePath.replace(conf.paths.src + '/app/', '');
return '@import "' + filePath + '";';
},
starttag: '// injector',
endtag: '// endinjector',
Expand Down

0 comments on commit dd91054

Please sign in to comment.