diff --git a/licenserc.toml b/licenserc.toml index d4eb011..ef4144b 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 = ['**/*.rs', '**/*.yml', '**/*.yaml', '**/*.toml'] -[properties] -copyrightOwner = "FastLabs Developers" -inceptionYear = 2026 +[props] +copyright_owner = "FastLabs Developers" +inception_year = 2026 diff --git a/xtask/src/main.rs b/xtask/src/main.rs index 1eb2afa..c9e86bf 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -199,7 +199,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"]); }