remove error messages

This commit is contained in:
Heavybullets8 2022-08-09 22:14:27 -06:00
parent e331dc2deb
commit c69d1b2983

View File

@ -82,8 +82,8 @@ do
clear -x
title
if ! k3s crictl exec -it "$container_id" /bin/bash ; then
k3s crictl exec -it "$container_id" /bin/sh || echo "This container does not accept shell access, try a different one."
if ! k3s crictl exec -it "$container_id" /bin/bash 2>/dev/null; then
k3s crictl exec -it "$container_id" /bin/sh 2>/dev/null || echo "This container does not accept shell access, try a different one."
fi
break
;;