Skip to content

Commit

Permalink
Fix golang lint error
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson authored Sep 2, 2024
1 parent 38fafad commit 909b45c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion env/env.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ const (
func GetCurrentExecutableDir() (string, string) {
ex, err := os.Executable()
if err != nil {
logger.Fatalf(err.Error())
logger.Fatal(err.Error())
}
target, err := filepath.EvalSymlinks(ex)
if err != nil {
Expand Down

0 comments on commit 909b45c

Please sign in to comment.