Skip to content

Commit

Permalink
Merge pull request #93 from rnakamine/fix-filename-hashicorp
Browse files Browse the repository at this point in the history
Fix the conditions for getting the HashiCorp icon.
  • Loading branch information
k1LoW authored Jan 18, 2022
2 parents 34f91c4 + 9e1da4e commit 6918752
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icon/hashicorp/hashicorp.go
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ func (f *HashicorpIcon) Fetch(iconPath, prefix string) error {
if !strings.Contains(f.Name, ".svg") {
continue
}
if !strings.Contains(f.Name, "FullColor") || strings.Contains(f.Name, "Enterprise") {
if !strings.Contains(f.Name, "Color") || strings.Contains(f.Name, "Enterprise") {
continue
}

Expand Down

0 comments on commit 6918752

Please sign in to comment.