Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
zhanglei1949 committed Jul 13, 2023
1 parent 0454bec commit 088e327
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flex.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ jobs:
- name: Setup tmate session
if: true
uses: mxschmitt/action-tmate@v2
uses: mxschmitt/action-tmate@v3

- name: Build
env:
Expand Down
4 changes: 2 additions & 2 deletions flex/bin/load_plan_and_gen.sh
Original file line number Diff line number Diff line change
Expand Up @@ -176,10 +176,10 @@ compile_hqps_so() {
cur_dir=${work_dir}
mkdir -p ${cur_dir}
output_cc_path="${cur_dir}/${query_name}.cc"
if [[ "$(uname)" == "Linux" ]]; then
if [[ $(uname) == "Linux" ]]; then
output_so_path="${cur_dir}/lib${query_name}.so"
dst_so_path="${output_dir}/lib${query_name}.so"
elif [[ "$(uname)" == "Darwin" ]]; then
elif [[ $(uname) == "Darwin" ]]; then
output_so_path="${cur_dir}/lib${query_name}.dylib"
dst_so_path="${output_dir}/lib${query_name}.dylib"
else
Expand Down

0 comments on commit 088e327

Please sign in to comment.