Commit 8b8f6a6a authored by 白秀江's avatar 白秀江

更新project-deploy.sh

parent 796005ee
...@@ -18,16 +18,17 @@ function deploy() { ...@@ -18,16 +18,17 @@ function deploy() {
TIMES=0 TIMES=0
while [ $COUNT -lt 1 ]; do while [ $COUNT -lt 1 ]; do
echo -e ".\c" echo -e ".\c"
sleep 1 sleep 1
COUNT=`curl -v "$3" | grep "success" | wc -l` COUNT=`curl -v "$3" | grep "success" | wc -l`
if [ $COUNT -gt 0 ]; then if [ $COUNT -gt 0 ]; then
break break
fi fi
let TIMES=TIMES+1 let TIMES=TIMES+1
if [ $TIMES -gt 200 ]; then if [ $TIMES -gt 200 ]; then
exit 1 exit 1
fi fi
done
} }
# #
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment