diff options
author | Silvio Rhatto <rhatto@riseup.net> | 2021-04-01 16:57:43 -0300 |
---|---|---|
committer | Silvio Rhatto <rhatto@riseup.net> | 2021-04-01 16:57:43 -0300 |
commit | 2a79caeea01d7a6171f585ecb02e5fda530945bd (patch) | |
tree | a19c6b8cd61485d016d5d9d7073d958d3b34cc96 | |
parent | 08c110262e772a1d1c5b6265c426ce79d5e8024b (diff) | |
download | trashman-2a79caeea01d7a6171f585ecb02e5fda530945bd.tar.gz trashman-2a79caeea01d7a6171f585ecb02e5fda530945bd.tar.bz2 |
Fix: podman: bootstrapping
-rwxr-xr-x | share/trashman/podman/unix/linux/ubuntu/install | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/share/trashman/podman/unix/linux/ubuntu/install b/share/trashman/podman/unix/linux/ubuntu/install index 7f643dd..5e0fe01 100755 --- a/share/trashman/podman/unix/linux/ubuntu/install +++ b/share/trashman/podman/unix/linux/ubuntu/install @@ -6,11 +6,11 @@ # Parameters SHARE="$1" -VERSION="7.3" +LIB="$2" # Include basic functions -. $SHARE/trashman/functions || exit 1 -. $LIB/trashman/debian || exit 1 +. $LIB/trashman/functions || exit 1 +. $LIB/trashman/debian || exit 1 # Load OS-related info . /etc/os-release || exit 1 |