diff --git a/bin/clippy b/bin/clippy index f01e80196d..9f31816956 100755 --- a/bin/clippy +++ b/bin/clippy @@ -1,5 +1,9 @@ #!/bin/bash +# Copyright 2019 The Chromium OS Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + # Run `cargo clippy` on all Rust code in crosvm with a mindful set of lints # suppressed. diff --git a/bin/fmt b/bin/fmt index 37e60706dc..39eac2c2f3 100755 --- a/bin/fmt +++ b/bin/fmt @@ -1,5 +1,9 @@ #!/bin/bash +# Copyright 2019 The Chromium OS Authors. All rights reserved. +# Use of this source code is governed by a BSD-style license that can be +# found in the LICENSE file. + # Run `cargo fmt` on all Rust code contained in crosvm. This is different from # `cargo fmt --all` which formats multiple crates but a single workspace only. # Crosvm consists of multiple workspaces.