Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion script/build-libpathrs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ function build_libpathrs() {
local tar="libpathrs-${ver}.tar.xz"

# Download, check, and extract.
wget "https://github.com/cyphar/libpathrs/releases/download/v${ver}/${tar}"{,.asc}
curl -fsSL --remote-name-all "https://github.com/cyphar/libpathrs/releases/download/v${ver}/${tar}"{,.asc}
sha256sum --strict --check - <<<"${LIBPATHRS_SHA256[${ver}]} *${tar}"

local srcdir
Expand Down
2 changes: 1 addition & 1 deletion script/build-seccomp.sh
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ function build_libseccomp() {
local tar="libseccomp-${ver}.tar.gz"

# Download, check, and extract.
wget "https://github.com/seccomp/libseccomp/releases/download/v${ver}/${tar}"{,.asc}
curl -fsSL --remote-name-all "https://github.com/seccomp/libseccomp/releases/download/v${ver}/${tar}"{,.asc}
sha256sum --strict --check - <<<"${SECCOMP_SHA256[${ver}]} *${tar}"

local srcdir
Expand Down
2 changes: 1 addition & 1 deletion script/setup_host.sh
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ platform:el9 | platform:el10)
esac

# Install common packages
RPMS=(cargo container-selinux fuse-sshfs git-core glibc-static golang iptables jq libseccomp-devel lld make policycoreutils wget)
RPMS=(cargo container-selinux curl fuse-sshfs git-core glibc-static golang iptables jq libseccomp-devel lld make policycoreutils)
# Work around dnf mirror failures by retrying a few times.
for i in $(seq 0 2); do
sleep "$i"
Expand Down
Loading