Skip to content

Commit 6ab37b3

Browse files
committed
+libudev-dev to linux pre-reqs
1 parent cd65bf7 commit 6ab37b3

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
* [`install.sh`](./install.sh) is delivered when you `curl tea.xyz`.
44
* This repository also provides the `tea` GitHub Action.
55

6-
# GitHub Action 0.15.3
6+
# GitHub Action 0.16.0
77

88
```yaml
99
- uses: teaxyz/setup@v0

install-pre-reqs.sh

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,9 @@ if test -f /etc/debian_version; then
99
# https://packages.debian.org/buster/all/netbase/filelist
1010
COMMON="netbase"
1111

12+
# difficult to pkg in our opinion
13+
COMMON="libudev-dev $COMMON"
14+
1215
case $(cat /etc/debian_version) in
1316
jessie/sid|8.*|stretch/sid|9.*)
1417
apt-get --yes install libc-dev libstdc++-4.8-dev libgcc-4.7-dev $COMMON;;
@@ -17,7 +20,7 @@ if test -f /etc/debian_version; then
1720
bullseye/sid|11.*)
1821
apt-get --yes install libc-dev libstdc++-10-dev libgcc-9-dev $COMMON;;
1922
bookworm/sid|12.*|*)
20-
apt-get --yes install libc-dev libstdc++-11-dev libgcc-10-dev $COMMON;;
23+
apt-get --yes install libc-dev libstdc++-11-dev libgcc-11-dev $COMMON;;
2124
esac
2225
elif test -f /etc/fedora-release; then
2326
yum --assumeyes install libatomic

0 commit comments

Comments
 (0)