Skip to content

Commit

Permalink
There's a comma in the list of files in install.sh
Browse files Browse the repository at this point in the history
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.

Signed-off-by: Eric Curtin <[email protected]>
  • Loading branch information
ericcurtin committed Feb 4, 2025
1 parent 3fdcae1 commit 7194bcd
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -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}"
Expand Down

0 comments on commit 7194bcd

Please sign in to comment.