Skip to content

Commit

Permalink
main.go: clarify auth file access error message (#418)
Browse files Browse the repository at this point in the history
Signed-off-by: Joe Lanford <joe.lanford@gmail.com>
  • Loading branch information
joelanford authored Sep 27, 2024
1 parent a0037dd commit 433a127
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/manager/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -299,7 +299,7 @@ func authFilePathIfPresent(logger logr.Logger) string {
return ""
}
if err != nil {
logger.Error(err, "unable to stat auth file path", "path", authFilePath)
logger.Error(err, "unable to access auth file path", "path", authFilePath)
os.Exit(1)
}
logger.Info("auth file found, configuring globally for image registry interactions", "path", authFilePath)
Expand Down

0 comments on commit 433a127

Please sign in to comment.