Skip to content

Commit

Permalink
Merge pull request #64 from robnester-rh/fix_typo_in_common
Browse files Browse the repository at this point in the history
fix type in URIType String() func
  • Loading branch information
robnester-rh authored Jun 28, 2024
2 parents 4c0c330 + 08270a9 commit a8e9b34
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion common.go
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ var getHomeDir = os.UserHomeDir

// String returns the string representation of the URLType
func (t URIType) String() string {
return [...]string{"GitURI", "HTTPURI", "FileURI", "OCIURL", "Unknown"}[t]
return [...]string{"GitURI", "HTTPURI", "FileURI", "OCIURI", "Unknown"}[t]
}

// ExpandTilde expands a leading tilde in the file path to the user's home directory
Expand Down

0 comments on commit a8e9b34

Please sign in to comment.