We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 70334ff commit 1120530Copy full SHA for 1120530
1 file changed
scripts/base/install_bin.sh
@@ -116,6 +116,13 @@ function isSame() {
116
}
117
118
function interactive_install_bin() {
119
+
120
+ # 判断是否设置 USE_LOCAL_TOOL=True,是的话就忽略
121
+ isLocal=$(readIni ${TCA_ROOT}/client/config.ini "COMMON" "USE_LOCAL_TOOL"|tr '[:upper:]' '[:lower:]')
122
+ if [[ $isLocal == "true" ]]; then
123
+ return 0
124
+ fi
125
126
download_lib
127
deepmove "${TCA_ROOT}/${LIB_DIR_NAME}" $TCA_ROOT
128
0 commit comments