Skip to content

Commit 2ee65c6

Browse files
author
Daniel Nichols
committed
use os.path.join for file sep
1 parent 10ed4c6 commit 2ee65c6

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

drivers/cpp/cpp_driver_wrapper.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141
def build_kokkos(driver_src: PathLike, output_root: PathLike, problem_size: str = "(1<<20)"):
4242
""" Custom steps for the Kokkos programs, since they require cmake """
4343
# cp cmake file into the output directory
44-
cmake_path = "cpp/KokkosCMakeLists.txt"
44+
cmake_path = os.path.join("cpp", "KokkosCMakeLists.txt")
4545
cmake_dest = os.path.join(output_root, "CMakeLists.txt")
4646
run_command(f"cp {cmake_path} {cmake_dest}", dry=False)
4747

0 commit comments

Comments
 (0)