style: use linter to style the code

This commit is contained in:
Simon Cornet 2025-02-28 14:34:37 +01:00
commit 3f81ebfb0d
5 changed files with 33 additions and 45 deletions

View file

@ -1,7 +1,7 @@
package main
import (
"log"
"log"
"os"
"os/exec"
)
@ -9,7 +9,7 @@ import (
func verifyGitAvailable() {
_, err := exec.LookPath("git")
if err != nil {
log.Fatalf("Error: could not find git in path")
log.Fatalf("Error: could not find git in path")
os.Exit(1)
}
}