From 7977697d86bd50f6e64fa25f96e60a73ccc4d299 Mon Sep 17 00:00:00 2001 From: Matt Taggart <taggart@riseup.net> Date: Tue, 8 Jan 2019 11:02:32 -0800 Subject: [PATCH] fix url --- tools/typos/mktransport | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/tools/typos/mktransport b/tools/typos/mktransport index bf2b20d..1b2fff5 100755 --- a/tools/typos/mktransport +++ b/tools/typos/mktransport @@ -16,21 +16,21 @@ echo "# domains that are registered by the owner of the domain they are a typo f for file in $owned; do echo "# ${file%-owned} owned domains" for domain in `cat lists/$file`; do - echo "$domain error: This domain exists, but is probably a typo. Contact http://support.riseup.net/ if this is in error." - echo ".$domain error: This domain exists, but is probably a typo. Contact http://support.riseup.net/ if this is in error." + echo "$domain error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error." + echo ".$domain error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error." done done echo echo "# domains that are registered by a squatter/random" for domain in `cat lists/$registered`; do - echo "$domain error: This domain exists, but is probably a typo. Contact http://support.riseup.net/ if this is in error." - echo ".$domain error: This domain exists, but is probably a typo. Contact http://support.riseup.net/ if this is in error." + echo "$domain error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error." + echo ".$domain error: This domain exists, but is probably a typo. Contact https://support.riseup.net/ if this is in error." done echo echo "# domains that aren't registered" for domain in `cat lists/$not`; do - echo "$domain error: This domain isn't resolving, but is probably a typo anyway. Contact http://support.riseup.net/ if this is in error." - echo ".$domain error: This domain isn't resolving, but is probably a typo anyway. Contact http://support.riseup.net/ if this is in error." + echo "$domain error: This domain isn't resolving, but is probably a typo anyway. Contact https://support.riseup.net/ if this is in error." + echo ".$domain error: This domain isn't resolving, but is probably a typo anyway. Contact https://support.riseup.net/ if this is in error." done -- GitLab