Merge pull request #22099 from taosdata/fix_packaging_issue

fix packaging issue
This commit is contained in:
Hui Li 2023-07-18 10:27:03 +08:00 committed by GitHub
commit 1f7e5c07ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -267,7 +267,9 @@ function install_log() {
}
function install_connector() {
${csudo}cp -rf ${script_dir}/connector/ ${install_main_dir}/
if [ -d ${script_dir}/connector ]; then
${csudo}cp -rf ${script_dir}/connector/ ${install_main_dir}/
fi
}
function install_examples() {