chore: linting

This commit is contained in:
Aravinth Manivannan
2023-07-02 21:51:24 +05:30
parent 1b05cdc391
commit 1e0aedad61
8 changed files with 20 additions and 20 deletions

View File

@@ -21,7 +21,7 @@ use sqlx::types::time::OffsetDateTime;
fn main() {
// note: add error checking yourself.
let output = Command::new("git")
.args(&["rev-parse", "HEAD"])
.args(["rev-parse", "HEAD"])
.output()
.unwrap();
let git_hash = String::from_utf8(output.stdout).unwrap();