We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 463156a commit cc06b56Copy full SHA for cc06b56
tools/deploy.sh
@@ -13,7 +13,7 @@ echo "version: ${version}"
13
echo "Adding git tag ${version}"
14
git tag ${version}
15
# 如果在创建tag的时候发生了错误就立即返回
16
-if [ $? -ne 0 ]; then exit $?; fi
+if [[ $? -ne 0 ]]; then exit $?; fi
17
18
remotes_raw=`git remote`
19
remotes=(${remotes_raw//\\n/ })
0 commit comments