diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2021-04-01 16:45:39 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2021-04-01 16:45:39 -0300 |
commit | 75f7876d7afec9903cda98584e35dc711d1721f0 (patch) | |
tree | c55c338e38aab997b4de305a81fb053d621bf0ae | |
parent | e227b94ca9c3df5fdd6315bf2a2c10725dca0de4 (diff) | |
download | trashman-75f7876d7afec9903cda98584e35dc711d1721f0.tar.gz trashman-75f7876d7afec9903cda98584e35dc711d1721f0.tar.bz2 |
Fix: podman: sh assignment
-rwxr-xr-x | share/trashman/podman/unix/linux/ubuntu/install | 2 |
1 files changed, 1 insertions, 1 deletions
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 |