Skip to content

Commit

Permalink
fix: Try without doas
Browse files Browse the repository at this point in the history
Signed-off-by: txtsd <[email protected]>
  • Loading branch information
txtsd committed Aug 15, 2023
1 parent 3e65b66 commit 1f2d074
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 8 deletions.
12 changes: 6 additions & 6 deletions 01_setup_build_env.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,11 @@
#!/bin/ash

apk update
apk add alpine-sdk doas
apk add alpine-sdk

doas addgroup $(whoami) abuild
doas mkdir -p /var/cache/distfiles
doas chmod a+w /var/cache/distfiles
doas chgrp abuild /var/cache/distfiles
doas chmod g+w /var/cache/distfiles
addgroup $(whoami) abuild
mkdir -p /var/cache/distfiles
chmod a+w /var/cache/distfiles
chgrp abuild /var/cache/distfiles
chmod g+w /var/cache/distfiles

4 changes: 2 additions & 2 deletions 02_build_static_libnl3.sh
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/bin/ash

doas abuild-keygen -a -i -b 4096
abuild-keygen -a -i -b 4096

git clone https://gitlab.alpinelinux.org/alpine/aports.git --depth 1
cd aports/main/libnl3
abuild -r
doas apk add ~/packages/main/$(abuild -A)/libnl3*
apk add ~/packages/main/$(abuild -A)/libnl3*

0 comments on commit 1f2d074

Please sign in to comment.