Skip to content

Commit

Permalink
Silence buildah output
Browse files Browse the repository at this point in the history
  • Loading branch information
dmnks committed Sep 15, 2023
1 parent 937ede7 commit f1420a0
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions tests/mktree.podman
Original file line number Diff line number Diff line change
Expand Up @@ -65,10 +65,12 @@ case $CMD in
# Build RPM natively, layer it on top
name=$(buildah from $IMAGE_BASE)
make_install $(buildah mount $name)
buildah rmi $IMAGE
buildah commit $name $IMAGE
buildah umount $name
buildah rm $name
{
buildah rmi $IMAGE
buildah commit -q $name $IMAGE
buildah umount $name
buildah rm $name
} >/dev/null
;;
shell)
if [ -n "$($PODMAN ps -a -q -f name=$NAME)" ]; then
Expand Down

0 comments on commit f1420a0

Please sign in to comment.