summary refs log tree commit diff
path: root/.ci/licenses.sh
blob: 4265c2a5c1cb80762583d0b8d36e057b8f267320 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/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" \))

reuse annotate --exclude-year --copyright="Nheko Contributors" --license="GPL-3.0-or-later" $FILES

git diff --exit-code