From 79eef4ada93028f9befae3a7f7b25c0cf79bcfb6 Mon Sep 17 00:00:00 2001 From: Eric Curtin Date: Sun, 22 Dec 2024 18:53:12 +0000 Subject: [PATCH] Add missing files to install.sh script file.py , http_client.py , etc. Signed-off-by: Eric Curtin --- install.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index d6393c97..cf0eb2e8 100755 --- a/install.sh +++ b/install.sh @@ -88,9 +88,11 @@ setup_ramalama() { $sudo install -m755 -d "$syspath" $sudo install -m755 "$to_file" "$ramalama_bin" - local python_files=("cli.py" "huggingface.py" "model.py" "ollama.py" "common.py" "__init__.py" \ - "quadlet.py" "kube.py" "oci.py" "version.py" "shortnames.py" "toml_parser.py") - + local python_files=("cli.py" "huggingface.py" "model.py" "ollama.py" \ + "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") + for i in "${python_files[@]}"; do url="${host}/containers/ramalama/${branch}/ramalama/${i}" download "$url" "$to_file"