Skip to content

Commit

Permalink
Fix error with k2-bin path (#1081)
Browse files Browse the repository at this point in the history
  • Loading branch information
mkornaukhov03 authored Aug 28, 2024
1 parent a6b6d89 commit 4c7a3b9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/kphp_tester.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ def make_kphp_once_runner(self, use_nocc, cxx_name, k2_bin):
vkext_dir=os.path.abspath(os.path.join(tester_dir, os.path.pardir, "objs", "vkext")),
use_nocc=use_nocc,
cxx_name=cxx_name,
k2_bin=os.path.abspath(k2_bin)
k2_bin=None if k2_bin is None else os.path.abspath(k2_bin)
)

def set_up_env_for_k2(self, cxx_name="clang++"):
Expand Down

0 comments on commit 4c7a3b9

Please sign in to comment.