fix windows

This commit is contained in:
John Smith
2022-07-12 13:07:02 -04:00
parent 529aa93ab7
commit 007150c818
2 changed files with 3 additions and 2 deletions

View File

@@ -83,7 +83,7 @@ fn main() -> EyreResult<()> {
if settings.read().daemon.enabled {
cfg_if! {
if #[cfg(windows)] {
return windows::run_service(settings, matches).map_err(|e| format!("{}", e));
return windows::run_service(settings, matches);
} else if #[cfg(unix)] {
return unix::run_daemon(settings, matches);
}