This commit is contained in:
Jason San Jose 2014-03-24 09:29:52 -07:00
Родитель 3306e8a59b
Коммит f7a883f8bd
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -230,7 +230,7 @@ module.exports = function (grunt) {
res.on("end", function () {
if (body.match(/.*REJECTED.*/)) {
grunt.log.error(user + " has NOT submitted the contributor license agreement");
grunt.log.error(user + " has NOT submitted the contributor license agreement. See http://dev.brackets.io/brackets-contributor-license-agreement.html.");
done(false);
} else {
grunt.log.writeln(user + " has submitted the contributor license agreement");
@ -251,4 +251,4 @@ module.exports = function (grunt) {
build.getGitInfo = getGitInfo;
return build;
};
};