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/checkAllStaticLinks.csh src/utils/qa/checkAllStaticLinks.csh
index fe633cee096..9b41c59ce75 100755
--- src/utils/qa/checkAllStaticLinks.csh
+++ src/utils/qa/checkAllStaticLinks.csh
@@ -42,31 +42,31 @@
   set pathfile=$argv[1]
   file $pathfile | grep -q "ASCII text"
   if ( $status ) then
     echo "\n file of paths $pathfile does not exist\n"
     exit 1
   endif
 endif
 
 set excludeList=/cluster/bin/scripts/linkCheckExclude
 if ( $status ) then
   echo "\n exclude file does not exist\n"
   exit 1
 endif
 
 foreach dir (`cat $pathfile`)
-  echo "checking $dir"
+  echo "checking $dir" > /dev/null
   checkStaticLinks.csh $dir $excludeList
 end
 
 # consolidate results
 set dir=""
 rm -f $outfile
 # foreach dir ( 0 goldenPath.help test ) 
 foreach dir (`cat $pathfile`)
   set dir=`echo $dir | sed "s@/@.@g"`
   if ( $dir == 0 )  then
     set dir=htdocs
   endif
   cat $dir.err                                        >> $outfile
   echo "==========================================\n" >> $outfile
   tail -20 $dir.err | grep -q "found no files with errors"