diff --git a/licenserc.toml b/licenserc.toml index 9ce2ed4..f77d2f3 100644 --- a/licenserc.toml +++ b/licenserc.toml @@ -12,10 +12,12 @@ # See the License for the specific language governing permissions and # limitations under the License. -headerPath = "Apache-2.0.txt" +[header] +builtin = "Apache-2.0" +[files] includes = ['**/*.proto', '**/*.rs', '**/*.yml', '**/*.yaml', '**/*.toml'] -[properties] -copyrightOwner = "FastLabs Developers" -inceptionYear = 2025 +[props] +copyright_owner = "FastLabs Developers" +inception_year = 2025 diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 8418a06..93b0f40 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -184,7 +184,7 @@ fn make_hawkeye_cmd(fix: bool) -> StdCommand { ensure_installed("hawkeye", "hawkeye"); let mut cmd = find_command("hawkeye"); if fix { - cmd.args(["format", "--fail-if-updated=false"]); + cmd.args(["format"]); } else { cmd.args(["check"]); }