Add CAFile and CAPath config options, use mbedtls in static builds

This is how we'll handle systems where the cert bundle and cert directory is stored where mbedtls doesn't expect it.

Also update tpt-libs to get new curl and mbedtls.
This commit is contained in:
Tamás Bálint Misius
2022-09-20 12:54:36 +02:00
parent b4213a20f7
commit 09c2704928
61 changed files with 214 additions and 185 deletions

View File

@@ -4,6 +4,11 @@ set -euo pipefail
shopt -s globstar
IFS=$'\n\t'
if [[ -z ${1-} ]] || [[ -z ${2-} ]] || [[ -z ${3-} ]]; then
>&2 echo "usage: ./update-wraps.sh OWNER REPO TAG"
exit 1
fi
owner=$1
repo=$2
tag=$3