Fixed git-describe grunt task

This commit is contained in:
Ian Gilman 2013-03-22 09:40:37 -07:00
parent 2bc61933b2
commit f0c4f5a875

View File

@ -66,7 +66,7 @@ module.exports = function(grunt) {
options: { options: {
banner: "//! <%= pkg.name %> <%= pkg.version %>\n" banner: "//! <%= pkg.name %> <%= pkg.version %>\n"
+ "//! Built on <%= grunt.template.today('yyyy-mm-dd') %>\n" + "//! Built on <%= grunt.template.today('yyyy-mm-dd') %>\n"
+ "//! <%= grunt.config.get('describeResult') %>\n" + "//! Git commit: <%= gitInfo %>\n"
+ "//! http://openseadragon.github.com\n\n", + "//! http://openseadragon.github.com\n\n",
process: true process: true
}, },
@ -135,7 +135,10 @@ module.exports = function(grunt) {
}, },
"git-describe": { "git-describe": {
options: { options: {
prop: "describeResult" prop: "gitInfo"
},
build: {
// Nothing here; we just need it in order to trigger this task
} }
} }
}); });