mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
Don't squawk when running under cargo
This commit is contained in:
parent
834d490beb
commit
be00847199
1 changed files with 2 additions and 6 deletions
|
@ -43,14 +43,10 @@ pub fn connect(mut callback: impl FnMut(HotReloadMsg) + Send + 'static) {
|
|||
break;
|
||||
}
|
||||
|
||||
// It's likely we're running under just cargo and not dx
|
||||
path = match path.parent() {
|
||||
Some(parent) => parent.to_path_buf(),
|
||||
None => {
|
||||
return eprintln!(
|
||||
"could not find hot reloading server for crate at {}",
|
||||
env!("CARGO_MANIFEST_DIR")
|
||||
)
|
||||
}
|
||||
None => return,
|
||||
};
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue