From 4197d3a3a14ee79a5c313d709773178c1aac18fa Mon Sep 17 00:00:00 2001 From: Jakub Staron Date: Wed, 5 Jun 2019 15:43:43 -0700 Subject: [PATCH] crosvm: add license blurb to bin/clippy and bin/fmt files MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit bin/clippy and bin/fmt were missing license blurbs at the top, so update them to include the license blurbs. BUG=None TEST=None Change-Id: Ic6bb5af3885d3735dcad42614aff7ac3dd33d638 Reviewed-on: https://chromium-review.googlesource.com/c/chromiumos/platform/crosvm/+/1646736 Tested-by: kokoro Commit-Queue: Jakub StaroĊ„ Reviewed-by: Stephen Barber --- bin/clippy | 4 ++++ bin/fmt | 4 ++++ 2 files changed, 8 insertions(+) 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.