From dcde4fa5019ca89730f15bef67dd6dae0c5bcfb2 Mon Sep 17 00:00:00 2001 From: Mylloon Date: Thu, 31 Mar 2022 00:05:44 +0200 Subject: [PATCH] =?UTF-8?q?Ajout=20de=20wget=20et=20valgrind=20?= =?UTF-8?q?=F0=9F=A5=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- ubuntu.sh | 3 ++- wsl.sh | 4 ++-- 2 files changed, 4 insertions(+), 3 deletions(-) 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