chore(gulpfile): fix link to clang formatting
Seems like the anchor tag wasn't updated here. Closes #4410
This commit is contained in:
parent
b87da8f47c
commit
a31b2175dc
|
@ -283,7 +283,7 @@ gulp.task('check-format', function() {
|
||||||
gulp.task('enforce-format', function() {
|
gulp.task('enforce-format', function() {
|
||||||
return doCheckFormat().on('warning', function(e) {
|
return doCheckFormat().on('warning', function(e) {
|
||||||
console.log("ERROR: You forgot to run clang-format on your change.");
|
console.log("ERROR: You forgot to run clang-format on your change.");
|
||||||
console.log("See https://github.com/angular/angular/blob/master/DEVELOPER.md#formatting");
|
console.log("See https://github.com/angular/angular/blob/master/DEVELOPER.md#clang-format");
|
||||||
process.exit(1);
|
process.exit(1);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
Loading…
Reference in New Issue