aboutsummaryrefslogtreecommitdiff
path: root/helix-term/build.rs
diff options
context:
space:
mode:
Diffstat (limited to 'helix-term/build.rs')
-rw-r--r--helix-term/build.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/helix-term/build.rs b/helix-term/build.rs
index 74c35a3a..719113ff 100644
--- a/helix-term/build.rs
+++ b/helix-term/build.rs
@@ -6,7 +6,7 @@ const VERSION: &str = include_str!("../VERSION");
fn main() {
let git_hash = Command::new("git")
- .args(&["rev-parse", "HEAD"])
+ .args(["rev-parse", "HEAD"])
.output()
.ok()
.filter(|output| output.status.success())