#!/bin/sh
set -e

autogen_get_ca_bundle() {
    echo "* Fetching CA from cURL website"
    curl -fsSLO https://curl.haxx.se/ca/cacert.pem
}
