Skip to content

Commit cc0fdf2

Browse files
committed
we need netbase on debians
It has fuck all files in it.
1 parent befafa3 commit cc0fdf2

File tree

2 files changed

+9
-5
lines changed

2 files changed

+9
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
[`install.sh`](./install.sh) is delivered when you `curl tea.xyz`.
44

5-
# GitHub Action 0.12.4
5+
# GitHub Action 0.12.5
66

77
This repository also provides the `tea` GitHub Action.
88

install-pre-reqs.sh

Lines changed: 8 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,15 +5,19 @@
55
if test -f /etc/debian_version; then
66
apt-get --yes update
77

8+
# minimal but required or networking doesn’t work
9+
# https://packages.debian.org/buster/all/netbase/filelist
10+
COMMON="netbase"
11+
812
case $(cat /etc/debian_version) in
913
jessie/sid|8.*|stretch/sid|9.*)
10-
apt-get --yes install libc-dev libstdc++-4.8-dev libgcc-4.7-dev;;
14+
apt-get --yes install libc-dev libstdc++-4.8-dev libgcc-4.7-dev $COMMON;;
1115
buster/sid|10.*)
12-
apt-get --yes install libc-dev libstdc++-8-dev libgcc-8-dev;;
16+
apt-get --yes install libc-dev libstdc++-8-dev libgcc-8-dev $COMMON;;
1317
bullseye/sid|11.*)
14-
apt-get --yes install libc-dev libstdc++-10-dev libgcc-9-dev;;
18+
apt-get --yes install libc-dev libstdc++-10-dev libgcc-9-dev $COMMON;;
1519
bookworm/sid|12.*|*)
16-
apt-get --yes install libc-dev libstdc++-11-dev libgcc-10-dev;;
20+
apt-get --yes install libc-dev libstdc++-11-dev libgcc-10-dev $COMMON;;
1721
esac
1822
elif test -f /etc/fedora-release; then
1923
yum --assumeyes install libatomic

0 commit comments

Comments
 (0)