From 56a2accc90aaa30a04a5294aad9b89e81126b7f4 Mon Sep 17 00:00:00 2001 From: pajlada Date: Sat, 21 Mar 2026 14:11:00 +0100 Subject: [PATCH] chore: explicitly mark license for scripts/get-tlds-update.sh (#6668) --- scripts/get-tlds-update.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/scripts/get-tlds-update.sh b/scripts/get-tlds-update.sh index a8b01b517..876b36c05 100755 --- a/scripts/get-tlds-update.sh +++ b/scripts/get-tlds-update.sh @@ -1,5 +1,9 @@ #!/bin/sh +# SPDX-FileCopyrightText: 2018 LajamerrMittesdine +# +# SPDX-License-Identifier: CC0-1.0 + #Download the official list of active TLDs from IANA #Remove the first line that contains data not needed. #Put everything that can be into lowercase. @@ -10,4 +14,4 @@ curl -s 'https://data.iana.org/TLD/tlds-alpha-by-domain.txt' | sed -e '1d' -e 's #Convert the punycode to Unicode. #Append the results to the current file. sed -n -e '/^xn--/p' tlds.txt | idn2 -d >> tlds.txt -mv tlds.txt ../resources/tlds.txt \ No newline at end of file +mv tlds.txt ../resources/tlds.txt