Skip to content

Commit

Permalink
rebase
Browse files Browse the repository at this point in the history
Signed-off-by: Pranav Gaikwad <[email protected]>
  • Loading branch information
pranavgaikwad committed Jul 2, 2024
1 parent 2fa5e38 commit 3a21a90
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ func (p *dotnetProvider) Capabilities() []provider.Capability {
func (p *dotnetProvider) Init(ctx context.Context, log logr.Logger, config provider.InitConfig) (provider.ServiceClient, provider.InitConfig, error) {
var mode provider.AnalysisMode = provider.AnalysisMode(config.AnalysisMode)
if mode != provider.SourceOnlyAnalysisMode {
return nil, fmt.Errorf("only full analysis is supported")
return nil, provider.InitConfig{}, fmt.Errorf("only full analysis is supported")
}

// handle proxy settings
Expand Down

0 comments on commit 3a21a90

Please sign in to comment.