Skip to content

Commit 5a78e48

Browse files
committed
read the right build folder
1 parent ae1b62f commit 5a78e48

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/build/read_compile_state.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ pub fn read(build_state: &mut BuildState) -> CompileAssetsState {
5252
.packages
5353
.par_iter()
5454
.map(|(_, package)| {
55-
let read_dir = fs::read_dir(std::path::Path::new(&package.get_build_path())).unwrap();
55+
let read_dir = fs::read_dir(std::path::Path::new(&package.get_ocaml_build_path())).unwrap();
5656
read_dir
5757
.filter_map(|entry| match entry {
5858
Ok(entry) => {

0 commit comments

Comments
 (0)