2021-03-05 00:35:15 +01:00
|
|
|
#!/usr/bin/env sh
|
|
|
|
|
|
|
|
# Runs the license update
|
|
|
|
# Return codes:
|
|
|
|
# - 1 there are files to be formatted
|
|
|
|
# - 0 everything looks fine
|
|
|
|
|
|
|
|
set -eu
|
|
|
|
|
|
|
|
FILES=$(find src resources/qml -type f \( -iname "*.cpp" -o -iname "*.h" -o -iname "*.qml" \))
|
|
|
|
|
2023-02-21 23:48:49 +01:00
|
|
|
reuse annotate --exclude-year --copyright="Nheko Contributors" --license="GPL-3.0-or-later" $FILES
|
2021-03-05 00:35:15 +01:00
|
|
|
|
|
|
|
git diff --exit-code
|