Skip to content

Commit

Permalink
Merge pull request #59 from paulohp/implement-grunt-exec
Browse files Browse the repository at this point in the history
added grunt-exec and use instead of grunt-shell
  • Loading branch information
zenorocha authored Nov 22, 2016
2 parents c6a3cb8 + 086477f commit 51ba82b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions Gruntfile.js
Original file line number Diff line number Diff line change
Expand Up @@ -337,7 +337,7 @@ module.exports = function(grunt) {

// -- Exec -------------------------------------------------------------

shell: {
exec: {

osx: {
command: 'source <%= config.osx.path_osx %>',
Expand Down Expand Up @@ -439,10 +439,10 @@ module.exports = function(grunt) {
grunt.loadNpmTasks('grunt-contrib-clean');
grunt.loadNpmTasks('grunt-git');
grunt.loadNpmTasks('grunt-prompt');
grunt.loadNpmTasks('grunt-shell');
grunt.loadNpmTasks('grunt-exec');
grunt.loadNpmTasks('grunt-symlink');
grunt.loadNpmTasks('grunt-template');

grunt.registerTask('setup', ['banner', 'prompt', 'clean', 'template', 'gitclone', 'shell', 'symlink']);
grunt.registerTask('setup', ['banner', 'prompt', 'clean', 'template', 'gitclone', 'exec', 'symlink']);

};
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@
"grunt-contrib-copy": "^0.8.0",
"grunt-git": "~0.3.4",
"grunt-prompt": "^1.1.0",
"grunt-shell": "^1.1.1",
"grunt-exec": "^0.4.6",
"grunt-symlink": "~0.4.0",
"grunt-template": "~0.2.1",
"update-notifier": "^0.3.1",
Expand Down

0 comments on commit 51ba82b

Please sign in to comment.