Skip to content

Commit

Permalink
Merge pull request #67 from tkisme/3.0
Browse files Browse the repository at this point in the history
proxy.sh 取消kill的错误输出,不美观
  • Loading branch information
Phus Lu committed Nov 24, 2014
2 parents e19a2ff + 10e4228 commit c08247a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion local/proxy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ start() {

stop() {
echo -n "Stopping ${PACKAGE_DESC}: "
kill -9 `ps aux | grep 'python2.7 proxy.py' | grep -v grep | awk '{print $2}'` || true
kill -9 `ps aux | grep 'python2.7 proxy.py' | grep -v grep | awk '{print $2}'` >/dev/null 2>&1 || true
echo "${PACKAGE_NAME}."
}

Expand Down

0 comments on commit c08247a

Please sign in to comment.