Skip to content

Commit

Permalink
Merge pull request #6 from ishworkh/fix_podman_load_cmd
Browse files Browse the repository at this point in the history
Add -q flag to podman load command
  • Loading branch information
ishworkh authored Jun 30, 2023
2 parents df005b2 + 9393187 commit 23a430b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "container-image-artifact",
"version": "1.0.2",
"version": "1.0.3",
"description": "Node module containing functionalities for upload/downloading container images as artifact in github action",
"main": "./src/index.js",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion src/container_engine.js
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ class DockerContainerEngine extends ContainerEngine {

class PodmanContainerEngine extends ContainerEngine {
_engineImageLoadCommand(inputPath) {
return `podman load -i ${inputPath}`;
return `podman load -q -i ${inputPath}`;
}

_enginePackageImageCommand(imageName, outputPath) {
Expand Down

0 comments on commit 23a430b

Please sign in to comment.