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