From 786c72362a7e03ce9e8ab86fcc986a00e36be86c Mon Sep 17 00:00:00 2001 From: George <58841610+Shinji-IkariG@users.noreply.github.com> Date: Sat, 28 Jan 2023 13:48:52 +0800 Subject: [PATCH] fix third party version in package.sh The dump_syms tool path should be match with third party version. --- package/package.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package/package.sh b/package/package.sh index 086eeed03ec..7a006ee6221 100755 --- a/package/package.sh +++ b/package/package.sh @@ -197,8 +197,8 @@ function package { function _find_dump_syms_tool { if [[ -x ${build_dir}/third-party/install/bin/dump_syms ]]; then dump_syms_tool_dir=${build_dir}/third-party/install/bin - elif [[ -x /opt/vesoft/third-party/2.0/bin/dump_syms ]]; then - dump_syms_tool_dir=/opt/vesoft/third-party/2.0/bin + elif [[ -x /opt/vesoft/third-party/3.3/bin/dump_syms ]]; then + dump_syms_tool_dir=/opt/vesoft/third-party/3.3/bin else echo ">>> Failed to find the dump_syms tool <<<" exit 1