From 75f7876d7afec9903cda98584e35dc711d1721f0 Mon Sep 17 00:00:00 2001 From: Silvio Rhatto Date: Thu, 1 Apr 2021 16:45:39 -0300 Subject: Fix: podman: sh assignment --- share/trashman/podman/unix/linux/ubuntu/install | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/trashman/podman/unix/linux/ubuntu/install b/share/trashman/podman/unix/linux/ubuntu/install index f5236ae..96e9828 100755 --- a/share/trashman/podman/unix/linux/ubuntu/install +++ b/share/trashman/podman/unix/linux/ubuntu/install @@ -18,7 +18,7 @@ VERSION="7.3" VERSION="`echo $VERSION_ID | tr -d '.'`" # Only use packages from Kubic if on Ubuntu 20.04 or below -if [ "$NAME" == "Ubuntu" ] && (($VERSION <= 2004)); then +if [ "$NAME" = "Ubuntu" ] && (($VERSION <= 2004)); then echo "deb https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/testing/xUbuntu_${VERSION_ID}/ /" | sudo tee /etc/apt/sources.list.d/devel:kubic:libcontainers:testing.list curl -L https://download.opensuse.org/repositories/devel:/kubic:/libcontainers:/testing/xUbuntu_${VERSION_ID}/Release.key | sudo apt-key add - fi -- cgit v1.2.3