Skip to content

Commit

Permalink
Lower case provider name
Browse files Browse the repository at this point in the history
  • Loading branch information
Alexander Sheiko committed Sep 21, 2023
1 parent 9e8de5e commit b44eae9
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"fmt"
"os"
"sort"
"strings"
"sync"
"time"

Expand All @@ -19,6 +20,7 @@ var (

func main() {
arg.MustParse(&args)
args.Provider = strings.ToLower(args.Provider)

for key, provider := range providers {
if args.All || key == args.Provider {
Expand Down

0 comments on commit b44eae9

Please sign in to comment.