Skip to content

Commit

Permalink
argoproj#2308 initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rylim committed Oct 16, 2022
1 parent d4a9074 commit fde64a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion util/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ func PrintVersion(cliName string, version wfv1.Version, short bool) {
func MustIsDir(filePath string) bool {
fileInfo, err := os.Stat(filePath)
if err != nil {
log.Fatal(err)
log.WithError(err).Fatal(err.Error())
}
return fileInfo.IsDir()
}
Expand Down

0 comments on commit fde64a5

Please sign in to comment.