Skip to content

Commit 8c03b3a

Browse files
committed
more
1 parent 23a55c3 commit 8c03b3a

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

Github/Runners/bootstrap/alpine.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set -x
1616
#Bootstrap
1717
apk update --no-interactive
1818
apk upgrade --no-interactive
19-
apk add bash binutils curl fakeroot musl-locales-lang wget --latest --upgrade --no-interactive
19+
apk add bash binutils curl fakeroot gawk musl-locales-lang sed wget --latest --upgrade --no-interactive
2020
#apk add bash alsa-utils alsa-utils-doc alsa-lib alsaconf alsa-ucm-conf pulseaudio pulseaudio-alsa --latest --upgrade --no-interactive
2121
#Fix & Patches
2222
chmod 755 "/bin/bbsuid" 2>/dev/null

Github/Runners/bootstrap/archlinux.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ set -x
1515
docker run --name "archlinux-base" --privileged "azathothas/archlinux:latest" bash -l -c '
1616
#Bootstrap
1717
pacman -y --sync --refresh --refresh --sysupgrade --noconfirm --debug
18-
packages="bash binutils curl fakechroot fakeroot git wget"
18+
packages="bash binutils curl fakechroot fakeroot gawk git sed wget"
1919
for pkg in $packages; do pacman -Sy "${pkg}" --noconfirm ; done
2020
for pkg in $packages; do pacman -Sy "${pkg}" --needed --noconfirm ; done
2121
#Fix & Patches

Github/Runners/bootstrap/artix.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ fi
2222
docker run --name "artix-base" --privileged "artixlinux/artixlinux:latest" bash -l -c '
2323
#Bootstrap
2424
pacman -y --sync --refresh --refresh --sysupgrade --noconfirm --debug
25-
packages="bash binutils curl fakechroot fakeroot git wget"
25+
packages="bash binutils curl fakechroot fakeroot gawk git sed wget"
2626
for pkg in $packages; do pacman -Sy "${pkg}" --noconfirm ; done
2727
for pkg in $packages; do pacman -Sy "${pkg}" --needed --noconfirm ; done
2828
#Fix & Patches

Github/Runners/bootstrap/cachyos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ fi
2121
docker run --name "cachyos-base" --privileged "cachyos/cachyos-v3:latest" bash -l -c '
2222
#Bootstrap
2323
pacman -y --sync --refresh --refresh --sysupgrade --noconfirm --debug
24-
packages="bash binutils curl fakechroot fakeroot git wget"
24+
packages="bash binutils curl fakechroot fakeroot gawk git sed wget"
2525
for pkg in $packages; do pacman -Sy "${pkg}" --noconfirm ; done
2626
for pkg in $packages; do pacman -Sy "${pkg}" --needed --noconfirm ; done
2727
#Fix & Patches

Github/Runners/bootstrap/eweos.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ set -x
1616
docker run --name "eweos-base" --privileged "ghcr.io/eweos/docker:nightly" bash -l -c '
1717
#Bootstrap
1818
pacman -y --sync --refresh --refresh --sysupgrade --noconfirm --debug
19-
packages="bash binutils curl fakechroot fakeroot git wget"
19+
packages="bash binutils curl fakechroot fakeroot gawk git sed wget"
2020
for pkg in $packages; do pacman -Sy "${pkg}" --noconfirm ; done
2121
for pkg in $packages; do pacman -Sy "${pkg}" --needed --noconfirm ; done
2222
#Fix & Patches

Github/Runners/bootstrap/ubuntu.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ set -x
3232
chown -R _apt:root /var/cache/apt/archives/partial/
3333
dpkg-statoverride --remove /usr/bin/crontab
3434
ubuntu_FRONTEND="noninteractive" apt update -y
35-
ubuntu_FRONTEND="noninteractive" apt install bash binutils coreutils curl fakeroot git locales sudo wget -y --no-install-recommends --ignore-missing
35+
ubuntu_FRONTEND="noninteractive" apt install bash binutils coreutils curl fakeroot gawk git locales sed sudo wget -y --no-install-recommends --ignore-missing
3636
locale-gen "en_US.UTF-8"
3737
echo "debconf debconf/frontend select Noninteractive" | debconf-set-selections
3838
apt purge locales perl -y ; apt autoremove -y ; apt autoclean -y

0 commit comments

Comments
 (0)