From 24bbebbd5da5e4071a11dac2387785bc1dff8f8f Mon Sep 17 00:00:00 2001 From: Tedi Mitiku Date: Thu, 12 Sep 2024 10:44:17 -0400 Subject: [PATCH] exhaust struct --- cli/cli/commands/run/run.go | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/cli/cli/commands/run/run.go b/cli/cli/commands/run/run.go index d9d6fb2b13..15273af4bb 100755 --- a/cli/cli/commands/run/run.go +++ b/cli/cli/commands/run/run.go @@ -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)