You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12 lines
198 B
Bash
12 lines
198 B
Bash
5 years ago
|
#!/bin/bash
|
||
|
|
||
|
for f in $(git ls-files '*.go'); do
|
||
|
if ! grep -q Copyright $f; then
|
||
|
sed -i '1i\
|
||
|
// Copyright (c) 2020, The Garble Authors.\
|
||
|
// See LICENSE for licensing information.\
|
||
|
|
||
|
' $f
|
||
|
fi
|
||
|
done
|