Skip to content

Commit

Permalink
Merge pull request wslutilities#189 from Lunchb0ne/patch-1
Browse files Browse the repository at this point in the history
Update the git install function for arch
  • Loading branch information
patrick330602 authored May 21, 2021
2 parents 46a72c0 + 79328c4 commit 9a4e7b7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configure.sh
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ case $distro in
sudo apk add git bc gzip make bash-completion imagemagick
;;
Arch*)
sudo pacman -Syyu git bc gzip make bash-completion imagemagick
sudo pacman -Syyu git bc gzip make bash-completion imagemagick --noconfirm
;;
*Oracle*|Scientific*)
sudo yum install -y git bc gzip make bash-completion imagemagick
Expand Down
2 changes: 1 addition & 1 deletion extras/scripts/wslu-install
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ case $distro in
*WLinux*|Ubuntu*|*Debian*|*Kali*) sudo apt install -y git;;
openSUSE*|SLES*) sudo zypper -n install git;;
Alpine*) sudo apk add git;;
Arch*) sudo pacman -Syyu git;;
Arch*) sudo pacman -Syyu git --noconfirm;;
Scientific*) sudo yum install -y git;;
*Fedora*) sudo dnf install -y git;;
*Generic*) [ "fedora" == "$(cat /etc/os-release | grep -e "LIKE=" | sed -e 's/ID_LIKE=//g')" ] && sudo dnf install -y git || exit 1;;
Expand Down

0 comments on commit 9a4e7b7

Please sign in to comment.