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.
garble/scripts/ensure-copyrights.sh

12 lines
198 B
Bash

#!/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