From b718e7bed63c2cc4c5d9500913a7af2231caa735 Mon Sep 17 00:00:00 2001 From: Gonzalo Martinez Date: Wed, 28 Aug 2024 15:48:56 -0300 Subject: [PATCH] Removed unneeded sudo --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index b466f19..f8db7ae 100644 --- a/install.sh +++ b/install.sh @@ -8,7 +8,7 @@ outputDirectory="/opt/Proxmox-Cloud-Image-Importer" if ! [ -x "$(command -v git)" ]; then echo "Installing Git... \n\n" - sudo apt-get install git -y + apt-get install git -y else echo "Git is already installed. Skipping... \n\n" fi @@ -16,7 +16,7 @@ fi if ! [ -x "$(command -v pip3)" ]; then echo "Installing Python3 Pip... \n\n" - sudo apt-get install python3-pip -y + apt-get install python3-pip -y else echo "Python3 Pip is already installed. Skipping... \n\n" fi @@ -44,4 +44,4 @@ ln -s $outputDirectory/cloud-import.py /usr/bin/local/cloud-import && chmod +x $ echo "Installed!! Run with 'cloud-import' \n" echo "If you want to update, run \"cd $outputDirectory && git pull\".\n\n" -cd $currentDirectory \ No newline at end of file +cd $currentDirectory