5adcf6bc2904690de7b7b30a83ec8a7a0996abe9 galt Tue Aug 21 00:01:25 2018 -0700 changing cse subdomain to soe diff --git src/utils/qa/cronLinks.csh src/utils/qa/cronLinks.csh index 38185ab..e8d7cda 100755 --- src/utils/qa/cronLinks.csh +++ src/utils/qa/cronLinks.csh @@ -1,49 +1,49 @@ #!/bin/tcsh source `which qaConfig.csh` ################################ # # 02-24-07 # Robert Kuhn & Archana Thakkapallayil # # runs linkChecker automatically # ################################ set dateString="" if ( $#argv != 1 ) then echo echo " runs linkChecker automatically" echo echo " usage: go" echo exit endif if ( "$HOST" != "hgwdev" ) then echo "\n error: you must run this script on dev!\n" exit 1 endif set dirPath="/usr/local/apache/htdocs" -set machine="genome-test.cse.ucsc.edu" +set machine="genome-test.soe.ucsc.edu" set directory="qa/test-results/staticLinks" set dateString=`date +%Y-%m-%d` if ( ! -d $dirPath/$directory/$dateString ) then mkdir $dirPath/$directory/$dateString endif nice checkAllStaticLinks.csh all $dateString >& $dirPath/$directory/$dateString/links.$dateString if ( $status ) then echo "\nerror. possibly exclude file does not exist. quitting.\n" exit 1 endif echo "link-checking complete" date echo "results at:" echo "http://$machine/$directory/$dateString/linkCheck.all.$dateString"