diff --git a/licenserc.toml b/licenserc.toml index 2b80854..d920c2c 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 = 2024 +[props] +copyright_owner = "FastLabs Developers" +inception_year = 2024 diff --git a/xtask/src/main.rs b/xtask/src/main.rs index ed4daeb..abfb8c4 100644 --- a/xtask/src/main.rs +++ b/xtask/src/main.rs @@ -168,7 +168,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"]); }