Skip to content

Commit

Permalink
Fixed #1
Browse files Browse the repository at this point in the history
The baseDir was set from an undefined variable which caused an error.
  • Loading branch information
nsrosenqvist committed Nov 5, 2014
1 parent 311de99 commit 712e88a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions index.js
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ elixir.extend('stylus', function(src, output) {

var config = this;

var baseDir = config.preprocessors.baseDir + 'stylus';
var baseDir = config.assetsDir + 'stylus';

src = this.buildGulpSrc(src, baseDir, '**/*.styl');

Expand Down Expand Up @@ -43,4 +43,4 @@ elixir.extend('stylus', function(src, output) {

return this.queueTask('stylus');

});
});

0 comments on commit 712e88a

Please sign in to comment.