浏览代码

更新 'update.sh'

sh only = , not ==
linj 5 年之前
父节点
当前提交
972afc0f5c
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      update.sh

+ 2 - 2
update.sh

@@ -17,9 +17,9 @@ cd chain33
 sleep 15
 set -x
 started=`ps aux | grep bityuan -w | grep -v grep  | wc -l`
-[ $started == 1 ]  || supervisorctl restart chain33
+[ $started = 1 ]  || supervisorctl restart chain33
 
 sleep 15
 started=`ps aux | grep bityuan -w | grep -v grep  | wc -l`
-[ $started == 1 ] && echo "update bityuan success!"
+[ $started = 1 ] && echo "update bityuan success!"