Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update regex match in verify_boilerplate.py
* In v0.14.0 controller-gen, we have headers like ``` //go:build !ignore_autogenerated ``` instead of ``` //go:build !ignore_autogenerated // +build !ignore_autogenerated ```. And this could result in error when running make verify-boilerplate since it always expect to `//go:build !ignore_autogenerated` to not have `\n` as next line, but followed by `// +build !ignore_autogenerated` which contains a new line.
- Loading branch information