Skip to content

Commit fde62a4

Browse files
committed
Improve upload archive progress bar
Signed-off-by: Michael Sverdlov <michaelsv@jfrog.com>
1 parent 062f0d6 commit fde62a4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

artifactory/commands/dotnet/dotnetcommand.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,9 +182,9 @@ func AddSourceToNugetConfig(cmdType dotnet.ToolchainType, sourceUrl, user, passw
182182
// Support http connection if requested
183183
if strings.HasPrefix(sourceUrl, "http://") {
184184
if cmdType == dotnet.DotnetCore {
185-
cmd.CommandFlags = append(cmd.CommandFlags, flagPrefix+"allow-insecure-connections", "true")
185+
cmd.CommandFlags = append(cmd.CommandFlags, flagPrefix+"allow-insecure-connections")
186186
} else {
187-
cmd.CommandFlags = append(cmd.CommandFlags, "AllowInsecureConnections", "true")
187+
cmd.CommandFlags = append(cmd.CommandFlags, flagPrefix+"AllowInsecureConnections")
188188
}
189189
}
190190

0 commit comments

Comments
 (0)