Skip to content

Commit

Permalink
exhaust struct
Browse files Browse the repository at this point in the history
  • Loading branch information
tedim52 committed Sep 12, 2024
1 parent 7e56e5b commit 24bbebb
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions cli/cli/commands/run/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -876,8 +876,12 @@ func pullPackagesLocally(packageDependencies []string) (map[string]string, error
Tags: 0,
InsecureSkipTLS: false,
CABundle: nil,
ProxyOptions: transport.ProxyOptions{},
Shared: false,
ProxyOptions: transport.ProxyOptions{
URL: "",
Username: "",
Password: "",
},
Shared: false,
})
if err != nil && !errors.Is(err, git.ErrRepositoryAlreadyExists) {
return nil, stacktrace.Propagate(err, "An error occurred cloning package '%s' to '%s'.", dependency, localPackagePath)
Expand Down

0 comments on commit 24bbebb

Please sign in to comment.