Skip to content

Commit

Permalink
fix: qs stack is insentitive (#170)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfatta authored Mar 19, 2021
1 parent c55d332 commit b878bf2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/cli/quickstarts.go
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ func getQuickstart(t, stack string) (quickstart, error) {
return quickstart{}, fmt.Errorf("Unknown quickstart type: %s", qsType)
}
for _, q := range quickstarts {
if q.Name == stack {
if strings.EqualFold(q.Name, stack) {
return q, nil
}
}
Expand Down

0 comments on commit b878bf2

Please sign in to comment.