Skip to content

Commit

Permalink
fixes grunt file path with spaces issue
Browse files Browse the repository at this point in the history
  • Loading branch information
felipesabino committed Jan 26, 2013
1 parent ba15c82 commit 40d00db
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions grunt.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ module.exports = function( grunt ) {

grunt.loadNpmTasks('grunt-shell');

var angularcrudPath = path.resolve('./generators/angularcrud');
var expressPath = path.resolve('./generators/express');
var angularcrudPath = path.resolve('./generators/angularcrud').replace(" ", "\\ ");
var expressPath = path.resolve('./generators/express').replace(" ", "\\ ");

grunt.initConfig({
shell: {
Expand Down Expand Up @@ -49,4 +49,4 @@ module.exports = function( grunt ) {

// Disable lint for now until we upgrade to latest grunt with latest jshint
grunt.registerTask('install', ['shell:npmYeoman', 'shell:npmDemo', 'shell:linkAngularcrud', 'shell:linkExpress', 'shell:promptAddPath']);
};
};

0 comments on commit 40d00db

Please sign in to comment.