我正在使用Grunt和Grunt-shell来构建/部署我的Javascript项目。
我想获取最新的git-commit编号并将其存储为变量,但无法详细说明。 我尝试过回调并设置全局变量。此变量可在函数中使用,但不能在其他块中使用
grunt.initConfig({
...
shell: {
getGitCommitNo: {
command: 'git rev-parse --short HEAD',
options: {
callback: function (err, stdout, stderr, cb) {
global['gitCommitNo'] = stdout;
grunt.log.ok(global.gitCommitNo);
cb();
}
}
},
philTest: {
command: 'echo Git Commit No: ' + global.gitCommitNo
},
...
}
输出:
>> Starting deployment process for version 1.1 in dev environment
Running "shell:getGitCommitNo" (shell) task
bfc82a9
>> bfc82a9
Running "shell:printTest" (shell) task
Git Commit No: undefined
Done, without errors.
有人可以建议我如何将命令行的输出保存到可以使用的变量吗?
答案 0 :(得分:10)
发现我实际上可以在回调中使用配置变量(而不是全局)来做到这一点。 (注意以下行也会删除换行符。)
grunt.config.set('gitCommitNo', stdout.replace('\n', ''));
然后可以使用以下方法访问:
<%=gitCommitNo%>