Skip to content

Commit 1bf1632

Browse files
committed
fix rebase
1 parent 190b679 commit 1bf1632

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

src/watcher.rs

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -61,9 +61,8 @@ async fn async_watch(
6161
filter,
6262
show_progress,
6363
path,
64-
None,
65-
build_dev_deps,
6664
bsc_path.clone(),
65+
build_dev_deps,
6766
)
6867
.expect("Can't initialize build");
6968
let mut needs_compile_type = CompileType::Incremental;
@@ -237,8 +236,15 @@ async fn async_watch(
237236
}
238237
CompileType::Full => {
239238
let timing_total = Instant::now();
240-
build_state = build::initialize_build(None, filter, show_progress, path, None)
241-
.expect("Can't initialize build");
239+
build_state = build::initialize_build(
240+
None,
241+
filter,
242+
show_progress,
243+
path,
244+
bsc_path.clone(),
245+
build_dev_deps,
246+
)
247+
.expect("Can't initialize build");
242248
let _ = build::incremental_build(
243249
&mut build_state,
244250
None,

0 commit comments

Comments
 (0)