From 38c2872ea99bbaefc4f7feb60b4e92541c1ac164 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 29 Sep 2014 04:02:31 -0700 Subject: [PATCH] include template in webpage files --- Gruntfile.coffee | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 201c55a6d..a57a1d5ea 100755 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -146,7 +146,7 @@ module.exports = (grunt) -> git tag -af stable -m "<%= pkg.meta.name %> v<%= pkg.meta.version %>." git checkout -b tmp git merge --no-commit -s ours gh-pages - git checkout gh-pages "builds/*<%= pkg.meta.suffix.beta %>.*" README.md index.html + git checkout gh-pages "builds/*<%= pkg.meta.suffix.beta %>.*" README.md template.jst index.html git commit -am "Move <%= pkg.meta.name %> v<%= pkg.meta.version %> to stable channel." git checkout gh-pages git merge --ff-only tmp @@ -157,7 +157,7 @@ module.exports = (grunt) -> command: """ git commit -am "Build web page." git checkout gh-pages - git checkout - README.md index.html + git checkout - README.md template.jst index.html git commit -am "Update web page." git checkout - """.split('\n').join('&&')