Use the ... form of a range specifier

This commit is contained in:
Graham Christensen 2018-02-03 11:27:20 -05:00
parent de179794cb
commit 4359033f30
No known key found for this signature in database
GPG key ID: ACA1C1D120C83D5C

View file

@ -181,7 +181,7 @@ impl CachedProjectCo {
let result = Command::new("git")
.arg("diff")
.arg("--name-only")
.arg(format!("HEAD..{}", commit))
.arg(format!("HEAD...{}", commit))
.current_dir(self.clone_to())
.output()?;