Skip to content

Commit

Permalink
git
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions committed Oct 21, 2024
1 parent bb451fd commit 60a418e
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/distro_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,16 +22,17 @@ jobs:
if [ -f /etc/os-release ]; then
. /etc/os-release
if [ "$ID" = "ubuntu" ] || [ "$ID" = "debian" ] || [ "$ID" = "kalilinux" ] || [ "$ID" = "parrotsec" ]; then
export DEBIAN_FRONTEND=noninteractive
apt-get update
apt-get -y install curl
apt-get -y install curl git
elif [ "$ID" = "alpine" ]; then
apk add --no-cache bash gcc g++ musl-dev libffi-dev
apk add --no-cache bash gcc g++ musl-dev libffi-dev curl git
elif [ "$ID" = "archlinux" ]; then
pacman -Syu --noconfirm curl
pacman -Syu --noconfirm curl git
elif [ "$ID" = "fedora" ]; then
dnf install -y curl
dnf install -y curl git
elif [ "$ID" = "gentoo" ]; then
emerge --update --newuse curl
emerge --update --newuse curl git
fi
fi
Expand Down

0 comments on commit 60a418e

Please sign in to comment.