From 086005ad22d40aa8bb9cf987a0f5bf003244f55a Mon Sep 17 00:00:00 2001 From: Eric Curtin Date: Tue, 4 Feb 2025 22:19:04 +0000 Subject: [PATCH] There's a comma in the list of files in install.sh It shouldn't be there. Also remove the -qq, it makes it feel like the script isn't makeing progress as podman takes a while to install but it's not true. Signed-off-by: Eric Curtin --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index 8fb30885..0642c7de 100755 --- a/install.sh +++ b/install.sh @@ -35,12 +35,12 @@ dnf_install() { } apt_get_install() { - apt-get -qq -y install "$1" + apt-get -y install "$1" } apt_install() { if ! available podman; then - $sudo apt-get update -qq || true + $sudo apt-get update || true # only install docker if podman can't be if ! $sudo apt_get_install podman; then @@ -130,7 +130,7 @@ setup_ramalama() { "common.py" "__init__.py" "quadlet.py" "kube.py" \ "oci.py" "version.py" "shortnames.py" "toml_parser.py" \ "file.py" "http_client.py" "url.py" "annotations.py" \ - "gpu_detector.py", "console.py" ) + "gpu_detector.py" "console.py") for i in "${python_files[@]}"; do if $local_install; then url="ramalama/${i}"