GODT-1560: Dependecy licenses update and link.

This commit is contained in:
Jakub
2022-05-16 16:42:21 +02:00
parent 5033e9718c
commit d6d7ea592e
10 changed files with 203 additions and 58 deletions

View File

@ -18,7 +18,13 @@
# along with ProtonMail Bridge. If not, see <https://www.gnu.org/licenses/>.
YEAR=`date +%Y`
MISSING_FILES=`find . -not -path "./vendor/*" -not -path "./vendor-cache/*" -not -path "./.cache/*" -not -name "*mock*.go" -regextype posix-egrep -regex ".*\.go|.*\.qml|.*\.sh|.*\.py" -exec grep -L "Copyright (c) ${YEAR} Proton Technologies AG" {} \;`
MISSING_FILES=$(find . \
-not -path "./vendor/*" \
-not -path "./vendor-cache/*" \
-not -path "./.cache/*" \
-not -name "*mock*.go" \
-regextype posix-egrep -regex ".*\.go|.*\.qml|.*\.sh|.*\.py" \
-exec grep -L "Copyright (c) ${YEAR} Proton Technologies AG" {} \;)
for f in ${MISSING_FILES}
do