Skip to content

Commit

Permalink
fix clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
haixuanTao committed Nov 11, 2024
1 parent 37bfc31 commit e0afd26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions binaries/cli/src/up.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand All @@ -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);
Expand Down

0 comments on commit e0afd26

Please sign in to comment.