We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 19c086a + 7afd1e1 commit e77b2e5Copy full SHA for e77b2e5
build.sh
@@ -87,6 +87,11 @@ if [ ! -d "$build_env" ]; then
87
# Ensure the installed toolchain has support for CA signed certificates.
88
# Without this wget on https:// will fail
89
cp /etc/ssl/certs/ca-certificates.crt "$build_env/etc/ssl/certs/"
90
+
91
+ # Add patched version of DST Root CA X3 certificate
92
+ wget -O DSTRootCAX3_Extended.crt "https://crt.sh/?d=8395"
93
+ sed -i "s/xMDkzMDE0MDExNVow/0MDkzMDE4MTQwM1ow/g" DSTRootCAX3_Extended.crt
94
+ cat DSTRootCAX3_Extended.crt >> "$build_env/etc/ssl/certs/ca-certificates.crt"
95
fi
96
97
# Patch WireGuard to use its own included memneq implementation if architecture
0 commit comments