mirror of
https://github.com/Nheko-Reborn/nheko.git
synced 2024-11-22 11:00:48 +03:00
96f791daf1
See also: https://daniel.haxx.se/blog/2023/01/08/copyright-without-years/ https://hynek.me/til/copyright-years/
14 lines
356 B
Bash
Executable file
14 lines
356 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 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
|