Skip to content

Commit 54952b4

Browse files
committed
Rebase on master
1 parent b618fea commit 54952b4

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

src/bootstrap/src/utils/tarball.rs

+5-1
Original file line numberDiff line numberDiff line change
@@ -370,7 +370,11 @@ impl<'a> Tarball<'a> {
370370
if self.builder.rust_info().is_managed_git_subrepository() {
371371
// %ct means committer date
372372
let timestamp = helpers::output(
373-
helpers::git(Some(&self.builder.src)).arg("log").arg("-1").arg("--format=%ct"),
373+
&mut helpers::git(Some(&self.builder.src))
374+
.arg("log")
375+
.arg("-1")
376+
.arg("--format=%ct")
377+
.command,
374378
);
375379
cmd.args(["--override-file-mtime", timestamp.trim()]);
376380
}

0 commit comments

Comments
 (0)