fix hot reload macro on unix

This commit is contained in:
Evan Almloff 2024-01-25 09:24:03 -06:00
parent 458c13fb74
commit 53380c9956

View file

@ -161,7 +161,7 @@ pub fn init<Ctx: HotReloadingContext + Send + 'static>(cfg: Config<Ctx>) {
// This will cause the local socket listener to fail to open
// We check if the file socket is already open from an old session and then delete it
if hot_reload_socket_path.exists() {
let _ = std::fs::remove_file(hot_reload_socket_path);
let _ = std::fs::remove_file(hot_reload_socket_path.clone());
}
}