Commit 0141fd3b authored by Russ Cox's avatar Russ Cox

dashboard: avoid seeing cron's sh -c in ps check

R=agl1
CC=golang-dev
https://golang.org/cl/196091
parent 0d8797bf
...@@ -21,8 +21,10 @@ export GOARCH=$2 ...@@ -21,8 +21,10 @@ export GOARCH=$2
# Check if we are already running. # Check if we are already running.
# First command must not be pipeline, to avoid seeing extra processes in ps. # First command must not be pipeline, to avoid seeing extra processes in ps.
all=$(ps axwwu) all=$(ps axwwu)
pid=$(echo "$all" | grep "buildcron.sh $1 $2" | grep -v $$ | awk '{print $2}') pid=$(echo "$all" | grep "buildcron.sh $1 $2" | grep -v "sh -c" | grep -v $$ | awk '{print $2}')
if [ "$pid" != "" ]; then if [ "$pid" != "" ]; then
#echo already running buildcron.sh $1 $2
#echo "$all" | grep "buildcron.sh $1 $2" | grep -v "sh -c" | grep -v $$
exit 0 exit 0
fi fi
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment