Skip to content

Commit

Permalink
skip non-BS linechecks
Browse files Browse the repository at this point in the history
  • Loading branch information
teuben committed Dec 2, 2024
1 parent 9370fd1 commit 4760834
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions bin/SLpipeline_run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -116,6 +116,7 @@ while [ $sleep -ne 0 ]; do
if [ $on1 != $on2 ]; then
pid=$(egrep $key $run/data_lmt.lag | tail -1 | awk '{print $7}')
goal=$(egrep $key $run/data_lmt.lag | tail -1 | awk '{print $4}')
pgm=$(egrep $key $run/data_lmt.lag | tail -1 | awk '{print $5}')
tail -1 $run/data_lmt.lag
printf_red Found new obsnum=$on2 pid=$pid
if [ -e SLpipeline.in ]; then
Expand All @@ -125,6 +126,9 @@ while [ $sleep -ne 0 ]; do
fi
if [ $goal == "LineCheck" ]; then
extra="$extra linecheck=1"
if [ $pgm != "Bs" ]; then
extra="skip=1"
fi
fi
echo "Found extra args: $extra"
if [ $dryrun = 0 ]; then
Expand Down

0 comments on commit 4760834

Please sign in to comment.