commit: add ob to status command

pull/17/head
Alec Muffett 2017-02-28 13:57:50 +00:00
rodzic f493a16667
commit 2fada075cc
1 zmienionych plików z 6 dodań i 0 usunięć

6
eotk
Wyświetl plik

@ -374,6 +374,12 @@ case "$cmd" in
;;
status) # project ..., or "-a"
if [ -d $ob_dir ] ; then
pidfiles=`find $ob_dir -name "*.pid"`
if [ "x$pidfiles" != "x" ] ; then
ps -p `cat $pidfiles`
fi
fi
$need_to_run_locally && RunLocallyOverProjects status "$@"
InvokeRemotely status "$@"
;;