mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
a09d6ce6e4
- fixing various problems with accessing / downloading content from secured sites - using CA certificates from debian's ca-certificates package - added copyright notice for Mozilla's certificates
9 lines
247 B
Bash
Executable File
9 lines
247 B
Bash
Executable File
#!/bin/bash
|
||
# It will probably work only for Debian based distros
|
||
|
||
cat /usr/share/ca-certificates/*/*.crt > ../src/data/data/ca-bundle.crt
|
||
cat /etc/ssl/certs/*.pem >> ../src/data/data/ca-bundle.crt
|
||
|
||
read -p "Press [ENTER] to close terminal"
|
||
exit
|