We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b618fea commit 54952b4Copy full SHA for 54952b4
src/bootstrap/src/utils/tarball.rs
@@ -370,7 +370,11 @@ impl<'a> Tarball<'a> {
370
if self.builder.rust_info().is_managed_git_subrepository() {
371
// %ct means committer date
372
let timestamp = helpers::output(
373
- helpers::git(Some(&self.builder.src)).arg("log").arg("-1").arg("--format=%ct"),
+ &mut helpers::git(Some(&self.builder.src))
374
+ .arg("log")
375
+ .arg("-1")
376
+ .arg("--format=%ct")
377
+ .command,
378
);
379
cmd.args(["--override-file-mtime", timestamp.trim()]);
380
}
0 commit comments