Browse Source

fix clippy

tags/v0.3.7rc1
haixuanTao 1 year ago
parent
commit
e0afd26e27
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      binaries/cli/src/up.rs

+ 2
- 2
binaries/cli/src/up.rs View File

@@ -101,7 +101,7 @@ fn start_coordinator() -> eyre::Result<()> {
.context("Could not get first argument correspond to dora with python installation")?
} else {
std::env::args_os()
.nth(0)
.next()
.context("Could not get dora path")?
};
let mut cmd = Command::new(path);
@@ -121,7 +121,7 @@ fn start_daemon() -> eyre::Result<()> {
.context("Could not get first argument correspond to dora with python installation")?
} else {
std::env::args_os()
.nth(0)
.next()
.context("Could not get dora path")?
};
let mut cmd = Command::new(path);


Loading…
Cancel
Save