fix if statements

This commit is contained in:
Mylloon 2021-11-12 13:46:45 +01:00
parent 608ba68e9a
commit 1f2493aae6

View file

@ -1,3 +1,5 @@
if grep "Ubuntu" /proc/version > /dev/null || grep "WSL" /proc/version > /dev/null;
then
git clone https://git.kennel.ml/Anri/myLinuxConfiguration.git
cd myLinuxConfiguration
# Install Fish
@ -12,7 +14,7 @@ sudo apt update && sudo apt install texlive-full -y
# Install Java
bash installJava.sh
if grep "Ubuntu" /proc/version > /dev/null || grep "WSL" /proc/version > /dev/null;
if grep "Ubuntu" /proc/version > /dev/null;
then
# Install Brave
bash installBrave.sh
@ -51,3 +53,6 @@ fi
# Supprime le repo
cd ..
rm -rf myLinuxConfiguration
else
echo "Your distribution isn't supported."
fi