1
mirror of https://invent.kde.org/network/falkon.git synced 2024-09-22 02:02:10 +02:00
falkonOfficial/scripts/make_ca_bundle.sh
nowrep fbafd56e90 [CaBundle] Update bundle + fix make_ca_bundle.sh script
make_ca_bundle.sh was actually appending all certs to the file.
As a result, there were duplicated certificates after multiple runs
of the script.
2014-03-14 12:27:10 +01:00

7 lines
137 B
Bash
Executable File

#!/bin/bash
# It will probably work only for Debian based distros
cat /etc/ssl/certs/*.pem > ../src/lib/data/data/ca-bundle.crt
exit 0