summary refs log tree commit diff
path: root/bin
diff options
context:
space:
mode:
authorJakub Staron <jstaron@google.com>2019-06-05 15:43:43 -0700
committerCommit Bot <commit-bot@chromium.org>2019-06-08 04:27:35 +0000
commit4197d3a3a14ee79a5c313d709773178c1aac18fa (patch)
tree7db910347750f784cf33177974af5b29c0cdc8c3 /bin
parent0e94e3c1ea3e08370391b7c2ebe82cfe865cdaf7 (diff)
downloadcrosvm-4197d3a3a14ee79a5c313d709773178c1aac18fa.tar
crosvm-4197d3a3a14ee79a5c313d709773178c1aac18fa.tar.gz
crosvm-4197d3a3a14ee79a5c313d709773178c1aac18fa.tar.bz2
crosvm-4197d3a3a14ee79a5c313d709773178c1aac18fa.tar.lz
crosvm-4197d3a3a14ee79a5c313d709773178c1aac18fa.tar.xz
crosvm-4197d3a3a14ee79a5c313d709773178c1aac18fa.tar.zst
crosvm-4197d3a3a14ee79a5c313d709773178c1aac18fa.zip
crosvm: add license blurb to bin/clippy and bin/fmt files
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 <noreply+kokoro@google.com>
Commit-Queue: Jakub StaroĊ„ <jstaron@google.com>
Reviewed-by: Stephen Barber <smbarber@chromium.org>
Diffstat (limited to 'bin')
-rwxr-xr-xbin/clippy4
-rwxr-xr-xbin/fmt4
2 files changed, 8 insertions, 0 deletions
diff --git a/bin/clippy b/bin/clippy
index f01e801..9f31816 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 37e6070..39eac2c 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.