From e87ff9e0fb16977f0449a02021c2685093f7dfde Mon Sep 17 00:00:00 2001 From: Mario Alegre Date: Mon, 18 May 2020 22:31:03 -0500 Subject: [PATCH] fix install script --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 0bbeccf..a6f050c 100755 --- a/install.sh +++ b/install.sh @@ -18,8 +18,8 @@ if [[ $distro == "Debian" ]]; then echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_$release/ /" > /etc/apt/sources.list.d/podman.list curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/stable/Debian_$release/Release.key | sudo apt-key add - - apt update -y - apt install -y podman + sudo apt update -y + sudo apt install -y podman else echo "Error: failed to detect distro" exit 1