Skip to content

Commit

Permalink
pulls latest store change from lib
Browse files Browse the repository at this point in the history
  • Loading branch information
jakedoublev committed Jan 10, 2025
1 parent aa39a4d commit 1de500d
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ import (
"fmt"
"log/slog"
"os"
"runtime"
"strings"

"github.com/creasty/defaults"
Expand Down Expand Up @@ -110,7 +111,7 @@ func LoadConfig(file string, key string) (*Config, error) {
return nil, errors.Join(err, ErrLoadingConfig)
}

platOS, err := profiles.NewPlatform(AppName)
platOS, err := profiles.NewPlatform(AppName, runtime.GOOS)

Check failure on line 114 in pkg/config/config.go

View workflow job for this annotation

GitHub Actions / lint

too many arguments in call to profiles.NewPlatform

Check failure on line 114 in pkg/config/config.go

View workflow job for this annotation

GitHub Actions / lint

too many arguments in call to profiles.NewPlatform

Check failure on line 114 in pkg/config/config.go

View workflow job for this annotation

GitHub Actions / lint

too many arguments in call to profiles.NewPlatform

Check failure on line 114 in pkg/config/config.go

View workflow job for this annotation

GitHub Actions / lint

too many arguments in call to profiles.NewPlatform

Check failure on line 114 in pkg/config/config.go

View workflow job for this annotation

GitHub Actions / Run govulncheck

too many arguments in call to profiles.NewPlatform

Check failure on line 114 in pkg/config/config.go

View workflow job for this annotation

GitHub Actions / unit tests

too many arguments in call to profiles.NewPlatform
if err != nil {
return nil, errors.Join(err, ErrLoadingConfig)
}
Expand Down

0 comments on commit 1de500d

Please sign in to comment.