mirror of
https://github.com/leozide/leocad.git
synced 2026-07-28 04:07:11 +00:00
Try to fix appimage cert issues.
This commit is contained in:
@@ -0,0 +1,27 @@
|
||||
#!/bin/bash -e
|
||||
|
||||
this_dir="\$(readlink -f "\$(dirname "\$0")")"
|
||||
unset QTDIR; unset QT_PLUGIN_PATH
|
||||
|
||||
# Find the system certificates location
|
||||
# https://gitlab.com/probono/platformissues/blob/master/README.md#certificates
|
||||
possible_locations=(
|
||||
"/etc/ssl/certs/ca-certificates.crt" # Debian/Ubuntu/Gentoo etc.
|
||||
"/etc/pki/tls/certs/ca-bundle.crt" # Fedora/RHEL
|
||||
"/etc/ssl/ca-bundle.pem" # OpenSUSE
|
||||
"/etc/pki/tls/cacert.pem" # OpenELEC
|
||||
"/etc/ssl/certs" # SLES10/SLES11, https://golang.org/issue/12139
|
||||
"/usr/share/ca-certs/.prebuilt-store/" # Clear Linux OS; https://github.com/knapsu/plex-media-player-appimage/issues/17#issuecomment-437710032
|
||||
"/system/etc/security/cacerts" # Android
|
||||
"/etc/pki/ca-trust/extracted/pem/tls-ca-bundle.pem" # CentOS/RHEL 7
|
||||
"/etc/ssl/cert.pem" # Alpine Linux
|
||||
)
|
||||
|
||||
for location in "\${possible_locations[@]}"; do
|
||||
if [ -r "\${location}" ]; then
|
||||
export SSL_CERT_FILE="\${location}"
|
||||
break
|
||||
fi
|
||||
done
|
||||
|
||||
exec "\${this_dir}/usr/bin/leocad" "\$@"
|
||||
Reference in New Issue
Block a user