Skip to content
This repository has been archived by the owner on Sep 14, 2022. It is now read-only.

Commit

Permalink
Run all gulp shell command as single statement.
Browse files Browse the repository at this point in the history
  • Loading branch information
razor-x committed Jun 11, 2015
1 parent 92f6d0c commit 87f05fd
Showing 1 changed file with 2 additions and 7 deletions.
9 changes: 2 additions & 7 deletions gulpfile.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -33,9 +33,7 @@ gulp.task 'dev', ->
.pipe $.replace(noDevStrings[2], devStrings[2])
.pipe gulp.dest(homePath)
.pipe $.shell([
pluginInstall
pluginClean
pluginUpdate
[pluginInstall, pluginClean, pluginUpdate].join('; ')
])

gulp.task 'nodev', ->
Expand All @@ -44,9 +42,6 @@ gulp.task 'nodev', ->
.pipe $.replace(devStrings[1], noDevStrings[1])
.pipe $.replace(devStrings[2], noDevStrings[2])
.pipe gulp.dest(homePath)
.pipe $.shell([pluginInit])
.pipe $.shell([
pluginInstall
pluginClean
pluginUpdate
[pluginInit, pluginInstall, pluginInit, pluginClean, pluginUpdate].join('; ')
])

0 comments on commit 87f05fd

Please sign in to comment.