Skip to content

Commit e263411

Browse files
committed
fix
1 parent feab6f0 commit e263411

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/xtask/src/main.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1220,7 +1220,7 @@ impl Xtasks {
12201220
let workspace_dir = Self::workspace_dir(&app_settings).unwrap();
12211221
let command = Command::new("git")
12221222
.args(["rev-parse", "--abbrev-ref", "HEAD"])
1223-
.current_dir(workspace_dir)
1223+
.current_dir(workspace_dir.clone())
12241224
.output()
12251225
.with_context(|| "Trying to figure out which branch we're on in benchmarking")?;
12261226
let branch = String::from_utf8(command.stdout)?;

0 commit comments

Comments
 (0)