Skip to content

Commit

Permalink
fix third party version in package.sh (#5281)
Browse files Browse the repository at this point in the history
The dump_syms tool path should be match with third party version.
  • Loading branch information
Shinji-IkariG authored Jan 28, 2023
1 parent 001f968 commit 7acdc9f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package/package.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 7acdc9f

Please sign in to comment.