Move copyright to the top of files.

This commit is contained in:
ArthurSonzogni
2023-08-19 13:56:36 +02:00
parent 7e6b7386ce
commit 5724f8483b
227 changed files with 708 additions and 923 deletions

View File

@@ -8,7 +8,7 @@ for file in $files
do
if ! grep -q Copyright $file
then
cat $file ./tools/license_headers.cpp > $file.new && mv $file.new $file
cat ./tools/license_headers.cpp $file > $file.new && mv $file.new $file
fi
done

View File

@@ -1,4 +1,4 @@
// Copyright 2023 Arthur Sonzogni. All rights reserved.
// Use of this source code is governed by the MIT license that can be found in
// the LICENSE file.