matrixion/.ci/licenses.sh

15 lines
332 B
Bash
Raw Normal View History

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