From b561f963f1b901cfc02a52059d4ec7c7d4503cf2 Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 2 Mar 2015 10:44:54 -0800 Subject: [PATCH 1/2] We should be able to build with CRLFs in the source, but better to be safe. --- .gitattributes | 1 + 1 file changed, 1 insertion(+) diff --git a/.gitattributes b/.gitattributes index f3760d287..66b75bc3c 100644 --- a/.gitattributes +++ b/.gitattributes @@ -2,6 +2,7 @@ * text=auto builds/* -text +text eol=lf # Custom for Visual Studio *.cs diff=csharp From ffcd23a30df3dde4f7b9879aa13f598b75e9baaf Mon Sep 17 00:00:00 2001 From: ccd0 Date: Mon, 2 Mar 2015 10:47:00 -0800 Subject: [PATCH 2/2] Also make sure the tags are up to date here. --- Gruntfile.coffee | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Gruntfile.coffee b/Gruntfile.coffee index 85908b5b8..2f5587bcc 100755 --- a/Gruntfile.coffee +++ b/Gruntfile.coffee @@ -143,6 +143,7 @@ module.exports = (grunt) -> """.split('\n').join('&&') beta: command: """ + git fetch --tags git tag -af beta -m "<%= pkg.meta.name %> v<%= pkg.meta.version %>." git checkout gh-pages git pull @@ -153,6 +154,7 @@ module.exports = (grunt) -> """.split('\n').join('&&') stable: command: """ + git fetch --tags git tag -af stable -m "<%= pkg.meta.name %> v<%= pkg.meta.version %>." git checkout gh-pages git pull @@ -164,6 +166,7 @@ module.exports = (grunt) -> """.split('\n').join('&&') web: command: """ + git fetch --tags git commit -am "Build web page." git checkout gh-pages git pull