8000
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 35803ad commit 59c93aeCopy full SHA for 59c93ae
common.sh
@@ -72,7 +72,8 @@ function update_local_code()
72
debug_import "No changes, nothing to commit. It is latest Version"
73
else
74
debug_import "Some changes, It will update itself ..."
75
- sleep 3
+ #XXX Beta版加下面的reset作为结果diff使用,Release 将去除该行
76
+ git reset 2>&1 1>/dev/null
77
fi
78
}
79
test_data/time.sh
@@ -0,0 +1,7 @@
1
+i=3
2
+while(($i >= 0)); do
3
+ echo -ne "\033[41;33mSome changes, It will update itself $i...\033[0m\r"
4
+ sleep 1
5
+ let i=i-1
6
+done
7
+echo -e ""
0 commit comments