5
1
Fork 0
mirror of https://github.com/Anvilcraft/jensmemes synced 2024-09-25 10:58:56 +02:00
jensmemes/website/api/tinify-php-master/update-cacert.sh
2020-07-21 23:07:16 +02:00

17 lines
360 B
Bash

#!/bin/sh
dir=lib/data
cert=0
curl https://curl.haxx.se/ca/cacert.pem | while read line; do
if [ "-----BEGIN CERTIFICATE-----" == "$line" ]; then
cert=1
echo $line
elif [ "-----END CERTIFICATE-----" == "$line" ]; then
cert=0
echo $line
else
if [ $cert == 1 ]; then
echo $line
fi
fi
done > $dir/cacert.pem