From 2db947763d9d904dd3bee053a108d5d37a8535a4 Mon Sep 17 00:00:00 2001 From: Barunes Padhy <148685909+barunespadhy@users.noreply.github.com> Date: Sat, 22 Jun 2024 09:09:33 +0300 Subject: [PATCH] Update rangolio_installer.sh --- rangolio_installer.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/rangolio_installer.sh b/rangolio_installer.sh index c742c30..e759025 100755 --- a/rangolio_installer.sh +++ b/rangolio_installer.sh @@ -18,11 +18,11 @@ detect_package_manager() { elif command_exists zypper; then echo "Detected package manager: Zypper (openSUSE)" sudo zypper refresh - sudo zypper install -y python3 python3-pip python3-venv git npm curl xterm + sudo zypper install -y python3 python3-pip git npm curl xterm elif command_exists pacman; then echo "Detected package manager: Pacman (Arch)" sudo pacman -Syu - sudo pacman -S --noconfirm python python-pip python-venv git npm curl xterm + sudo pacman -S --noconfirm python python-pip git npm curl xterm else echo "Package manager not detected. Unsupported OS or package manager." exit 1