Skip to content
This repository has been archived by the owner on Oct 16, 2023. It is now read-only.

Commit

Permalink
Fix Fatal call has possible formatting directive %s
Browse files Browse the repository at this point in the history
  • Loading branch information
sampointer committed Apr 13, 2020
1 parent 0fce216 commit b38beb2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion process/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@ func Run(c *cli.Context, modeverb string) (int, string) {
// Start execution
err = cmd.Start()
if err != nil {
log.Fatal("failed to start %s %s", path, strings.Join(c.Args().Tail(), " "))
log.Fatalf("failed to start %s %s", path, strings.Join(c.Args().Tail(), " "))
}
log.Printf("%s %s %s", modeverb, path, strings.Join(c.Args().Tail(), " "))

Expand Down

0 comments on commit b38beb2

Please sign in to comment.