bf2f9d1f4a880c335a01977a6645855f0c835028 gperez2 Wed Apr 15 11:47:29 2026 -0700 Fix checkAllStaticLinks and checkStaticLinks cron scripts: use https for hgwbeta baseUrl since hgwbeta now redirects HTTP to HTTPS, and suppress progress output to reduce cron email noise. No RM. diff --git src/utils/qa/checkStaticLinks.csh src/utils/qa/checkStaticLinks.csh index d577034c11d..f9814161661 100755 --- src/utils/qa/checkStaticLinks.csh +++ src/utils/qa/checkStaticLinks.csh @@ -4,31 +4,31 @@ ############################################### # 05-10-2004 # # checks the links in all the files in a directory # Robert Kuhn # ############################################### onintr cleanup set filePath="" set out="" set url="" set exclude="" set excludeList="" -set baseUrl="http://hgwbeta.soe.ucsc.edu" +set baseUrl="https://hgwbeta.soe.ucsc.edu" set errs=0 if ( $#argv < 1 || $#argv > 2 ) then # wrong number of command-line args echo echo " checks the links in all the static pages in a directory." echo " operates on pages on hgwbeta" echo " writes a file called path.In.Docs.err" echo echo " usage: pathInHtdocs [excludeList]" echo ' where:' echo ' pathInHtdocs = htdocs directory path (use 0 for htdocs itself)' echo ' e.g., goldenPath, goldenPath/help, FAQ' echo " excludeList = filename for list of files not to check" echo