mirror of
https://github.com/correl/rebar.git
synced 2024-12-18 03:00:17 +00:00
Change vm process search to include non-smp beam
This commit is contained in:
parent
618b292c3d
commit
5bb78f619e
1 changed files with 3 additions and 3 deletions
|
@ -70,16 +70,16 @@ case "$1" in
|
|||
Linux|Darwin|FreeBSD|DragonFly|NetBSD|OpenBSD)
|
||||
# PID COMMAND
|
||||
PID=`ps ax -o pid= -o command=|\
|
||||
grep "$RUNNER_BASE_DIR/.*/[b]eam.smp"|awk '{print $1}'`
|
||||
grep "$RUNNER_BASE_DIR/.*/[b]eam"|awk '{print $1}'`
|
||||
;;
|
||||
SunOS)
|
||||
# PID COMMAND
|
||||
PID=`ps -ef -o pid= -o args=|\
|
||||
grep "$RUNNER_BASE_DIR/.*/[b]eam.smp"|awk '{print $1}'`
|
||||
grep "$RUNNER_BASE_DIR/.*/[b]eam"|awk '{print $1}'`
|
||||
;;
|
||||
CYGWIN*)
|
||||
# UID PID PPID TTY STIME COMMAND
|
||||
PID=`ps -efW|grep "$RUNNER_BASE_DIR/.*/[b]eam.smp"|\
|
||||
PID=`ps -efW|grep "$RUNNER_BASE_DIR/.*/[b]eam"|\
|
||||
awk '{print $2}'`
|
||||
;;
|
||||
esac
|
||||
|
|
Loading…
Reference in a new issue