diff --git a/ubuntu.sh b/ubuntu.sh index ddcaec7..5fb4d3a 100644 --- a/ubuntu.sh +++ b/ubuntu.sh @@ -6,12 +6,13 @@ then which git &> /dev/null || sudo apt install git -y # install git if not already installed which curl &> /dev/null || sudo apt install apt-transport-https curl -y # install curl (along with apt-transport-https) if not already installed + which wget &> /dev/null || sudo apt install apt-transport-https curl -y # install wget if not already installed # == Upgrade and clean already installed packages == sudo apt full-upgrade -y # == Basic dev == - sudo apt install build-essential -y + sudo apt install build-essential valgrind -y # == Fish == sudo apt-add-repository ppa:fish-shell/release-3 -y diff --git a/wsl.sh b/wsl.sh index d1a918b..bed6a59 100644 --- a/wsl.sh +++ b/wsl.sh @@ -6,13 +6,13 @@ then which git &> /dev/null || sudo apt install git -y # install git if not already installed which curl &> /dev/null || sudo apt install apt-transport-https curl -y # install curl (along with apt-transport-https) if not already installed - which wget &> /dev/null || sudo apt install apt-transport-https curl -y # install curl (along with apt-transport-https) if not already installed + which wget &> /dev/null || sudo apt install apt-transport-https curl -y # install wget if not already installed # == Upgrade and clean already installed packages == sudo apt full-upgrade -y # == Basic dev == - sudo apt install build-essential wget -y + sudo apt install build-essential valgrind -y # == Fish == sudo apt-add-repository ppa:fish-shell/release-3 -y