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

Commit

Permalink
Merge pull request #220 from netlify/fix-exit-codes
Browse files Browse the repository at this point in the history
Fix false positive process warning on non-0 exit code
  • Loading branch information
bcomnes committed Nov 16, 2018
2 parents 6a28b3d + 35ecf3e commit 6f11eb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion run-build-functions.sh
Expand Up @@ -625,7 +625,7 @@ set_go_import_path() {
}

find_running_procs() {
ps aux | grep -v [p]s | grep -v [g]rep | grep -v [b]ash | grep -v "/usr/local/bin/buildbot" | grep -v [d]efunct
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 -v "[build]"
}

report_lingering_procs() {
Expand Down

0 comments on commit 6f11eb9

Please sign in to comment.