matrixion/.ci/licenses.sh
Nicolas Werner da96558bb9
Lint qml
2022-04-23 03:10:27 +02:00

14 lines
332 B
Bash
Executable file

#!/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 qml -type f \( -iname "*.cpp" -o -iname "*.h" -o -iname "*.qml" \))
reuse addheader --copyright="Nheko Contributors" --license="GPL-3.0-or-later" $FILES
git diff --exit-code