From 17ade12ab9ceef5624dcb3f0378a46bbbc94dab2 Mon Sep 17 00:00:00 2001 From: Shuduo Sang Date: Thu, 23 Dec 2021 12:05:26 +0800 Subject: [PATCH] Hotfix/sangshuduo/td 11842 split taostools targz (#9294) * [TD-11842]: split taos-tools from TDengine tar.gz * fix taos-tools version * disable install_avro() in install.sh * update makeclient.sh and deb/rpm script. * update taos-tools commit * update commit to fix taosdemo/taosdump * missed $ in shell. * fix taos missed in makeclient.sh * fix typo --- packaging/tools/makeclient.sh | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/packaging/tools/makeclient.sh b/packaging/tools/makeclient.sh index 4c3278e41b..92d3f8a89c 100755 --- a/packaging/tools/makeclient.sh +++ b/packaging/tools/makeclient.sh @@ -43,9 +43,11 @@ if [ "$osType" != "Darwin" ]; then if [ "$pagMode" == "lite" ]; then #strip ${build_dir}/bin/taosd strip ${build_dir}/bin/taos - bin_files="${build_dir}/bin/taos ${script_dir}/remove_client.sh" + bin_files="${build_dir}/bin/taos \ + ${script_dir}/remove_client.sh" else - bin_files="${script_dir}/remove_client.sh \ + bin_files="${build_dir}/bin/taos \ + ${script_dir}/remove_client.sh \ ${script_dir}/set_core.sh \ ${script_dir}/get_client.sh" #${script_dir}/get_client.sh ${script_dir}/taosd-dump-cfg.gdb" -- GitLab