Skip to content

Commit

Permalink
Merge pull request #43558 from geoand/podman-push-fix
Browse files Browse the repository at this point in the history
Fix podman push
  • Loading branch information
iocanel authored Sep 27, 2024
2 parents 428bd9e + 3b968d6 commit e2d56c5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ protected String createContainerImage(ContainerImageConfig containerImageConfig,

@Override
protected String[] createPushArgs(String image, PodmanConfig config) {
return new String[] { "push", image, "push", image, String.format("--tls-verify=%b", config.tlsVerify()) };
return new String[] { "push", image, String.format("--tls-verify=%b", config.tlsVerify()) };
}

private String[] getPodmanBuildArgs(String image,
Expand Down

0 comments on commit e2d56c5

Please sign in to comment.