"include/vscode:/vscode.git/clone" did not exist on "0f0eb69e3b86cfd2ca159a628654cf1f907e4cb3"
Commit 4e751a45 authored by jeremiedb's avatar jeremiedb Committed by Guolin Ke
Browse files

[R] fix Windows may miss ``/`` in the end of R_PACKAGE_SOURCE (#607)

parent a8673bd5
......@@ -46,7 +46,7 @@ if (!use_precompile) {
} else {
cmake_cmd <- paste0(cmake_cmd, " -DCMAKE_GENERATOR_PLATFORM=x64 ")
build_cmd <- "cmake --build . --target _lightgbm --config Release"
lib_folder <- paste0(R_PACKAGE_SOURCE, "src/Release/")
lib_folder <- paste0(R_PACKAGE_SOURCE, "/src/Release/")
}
}
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment