Skip to content

Commit

Permalink
Make gulp "processindex" command work under Windows
Browse files Browse the repository at this point in the history
ProcessIndex command was using single quotes around the index.html file
path, need double quotes to work on Windows.   Tested double quotes
under Ubuntu and still worked there.
  • Loading branch information
uglycoyote committed Jun 21, 2017
1 parent a5237a9 commit 41990a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion www/base/guanlecoja/config.coffee
Expand Up @@ -59,7 +59,7 @@ config =
gulp.task 'processindex', ['index'], ->
indexpath = path.join(config.dir.build, 'index.html')
gulp.src ""
.pipe shell("buildbot processwwwindex -i '#{indexpath}'")
.pipe shell("buildbot processwwwindex -i \"#{indexpath}\"")

gulp.task 'proxy', ['processindex'], ->
# this is a task for developing, it proxy api request to http://nine.buildbot.net
Expand Down

0 comments on commit 41990a9

Please sign in to comment.