Skip to content

Commit

Permalink
Fix Clippy
Browse files Browse the repository at this point in the history
  • Loading branch information
arendjr committed Sep 20, 2023
1 parent cd12936 commit ac4264f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xtask/src/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub fn cargo(args: impl IntoIterator<Item = impl Into<OsString>>) -> Expression

pub fn deno(args: impl IntoIterator<Item = impl Into<OsString>>) -> Expression {
let args: VecDeque<OsString> = args.into_iter().map(|os| os.into()).collect();
cmd("deno", &args)
cmd("deno", args)
}

pub fn from_root(path: impl Into<PathBuf>) -> PathBuf {
Expand Down

0 comments on commit ac4264f

Please sign in to comment.