mirror of
https://invent.kde.org/network/falkon.git
synced 2024-11-11 09:32:12 +01:00
af72fad533
- also fixed bad link to AUTHORS file in homepage translations
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
|