mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
fbafd56e90
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.
7 lines
137 B
Bash
Executable File
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
|