Skip to content

Commit

Permalink
Merge pull request #51 from open-tux/undefined-bower-directory
Browse files Browse the repository at this point in the history
Fallback to empty string for undefined bowerDirectory
  • Loading branch information
alexdiliberto authored Feb 1, 2017
2 parents 1b49700 + baf3537 commit 9072b6b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ module.exports = {
target.options = target.options || {};

// Build all paths
var bulmaPath = path.join(target.bowerDirectory, 'bulma');
var bulmaPath = path.join(target.bowerDirectory || 'bower_components', 'bulma');

target.options.sassOptions = target.options.sassOptions || {};
target.options.sassOptions.includePaths = target.options.sassOptions.includePaths || [];
Expand Down

0 comments on commit 9072b6b

Please sign in to comment.