Skip to content
This repository was archived by the owner on Jan 25, 2023. It is now read-only.

Commit 5159a4b

Browse files
authored
Fix find_running_procs to exclude correct binary (#461)
1 parent b0258b9 commit 5159a4b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

run-build-functions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -776,7 +776,7 @@ set_go_import_path() {
776776
}
777777

778778
find_running_procs() {
779-
ps aux | grep -v [p]s | grep -v [g]rep | grep -v [b]ash | grep -v "/usr/local/bin/buildbot" | grep -v [d]efunct | grep -vw '\[build\]'
779+
ps aux | grep -v [p]s | grep -v [g]rep | grep -v [b]ash | grep -v "/opt/build-bin/buildbot" | grep -v [d]efunct | grep -vw '\[build\]'
780780
}
781781

782782
report_lingering_procs() {

0 commit comments

Comments
 (0)