This is an automated email from the ASF dual-hosted git repository.

sebb pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/whimsy.git

commit 1ceac83d26108d399ee1caffdc32b837ea2a648e
Author: Sebb <[email protected]>
AuthorDate: Fri Sep 15 13:57:44 2023 +0100

    Force https
---
 tools/site-scan.rb | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/tools/site-scan.rb b/tools/site-scan.rb
index 7210af07..0f2000fb 100755
--- a/tools/site-scan.rb
+++ b/tools/site-scan.rb
@@ -57,6 +57,8 @@ end
 # @see SiteStandards for definitions of what we should scan for (in general)
 def parse(id, site, name)
   data = {}
+  # force https to avoid issue with cache (sites should use https anyway)
+  site.sub!(%r{^http:},'https:')
   SiteStandards::COMMON_CHECKS.each_key do |k|
     data[k.to_sym] = nil
   end

Reply via email to