746552b09ca621ad9dd6d3eb5e506510c24a9454 kuhn Tue Apr 12 08:38:32 2011 -0700 moved an exit statement into bebug. may have fixed donna's email diff --git src/utils/qa/alertBqueue.csh src/utils/qa/alertBqueue.csh index 8b01d37..c30e617 100755 --- src/utils/qa/alertBqueue.csh +++ src/utils/qa/alertBqueue.csh @@ -1,33 +1,33 @@ #!/bin/tcsh source `which qaConfig.csh` ################################ # # 10-03-2008 # # checks pushQ for B entries and send email to developer and QA # # Robert Kuhn # ################################ set go="" # make lists of substitutions for email addresses -set counter=( 1 2 3 4 5 6 7 8 9 10 11 12 ) -set alias=( andy belinda brian brooke bob fan jim jing larry mark rachel zach ) -set email=( aamp giardine braney rhead kuhn fanhsu kent jzhu larrym markd hartera jsanborn ) +set counter=( 1 2 3 4 5 6 7 8 9 10 11 12 13 ) +set alias=( andy belinda brian brooke bob donna fan jim jing larry mark rachel zach ) +set email=( aamp giardine braney rhead kuhn donnak fanhsu kent jzhu larrym markd hartera jsanborn ) if ( $#argv != 1 ) then echo echo " checks pushQ for B entries and sends email to developer and QA." echo " uses hard-coded aliases to get email address from nicknames." echo echo " usage: go" echo exit else set go=$argv[1] endif if ( "$HOST" != "hgwdev" ) then @@ -71,29 +71,26 @@ endif # replace common names with email addresses foreach i ( $counter ) set contacts=`echo $contacts | sed "s/$alias[$i] /$email[$i] /g"` if ( $debug == "true" ) then echo here5 $i echo $alias[$i] echo $email[$i] echo " contacts $contacts" ## send output only to selected people # set contacts="ann kuhn pauline rhead" # set contacts="pauline rhead ann" echo " contacts $contacts" cat Bfile - endif -end - -if ( $debug == "true" ) then exit endif +end # add ann to list set contacts="$contacts ann donnak" # cat Bfile | mail -c $contacts'@soe.ucsc.edu' -s "test. ignore " $USER cat Bfile | mail -c $contacts'@soe.ucsc.edu' -s "B-queue alert" $USER rm Bfile