Fixe erreur script sous manjaro #5
|
@ -2,10 +2,18 @@
|
||||||
|
|
||||||
set -eo pipefail
|
set -eo pipefail
|
||||||
|
|
||||||
DESTDIR=/usr/local/share/ca-certificates
|
declare -a DESTDIR_PATHS=(
|
||||||
if [ ! -d "$DESTDIR" ]; then
|
"/usr/local/share/ca-certificates"
|
||||||
DESTDIR=/etc/pki/ca-trust/source/anchors
|
"/etc/ca-certificates/trust-source/anchors"
|
||||||
fi
|
"/etc/pki/ca-trust/source/anchors"
|
||||||
|
)
|
||||||
|
|
||||||
|
for path in "${DESTDIR_PATHS[@]}"; do
|
||||||
|
if [ -d "$path" ]; then
|
||||||
|
DESTDIR=$path
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
UPDATE_CERTS_CMD=update-ca-certificates
|
UPDATE_CERTS_CMD=update-ca-certificates
|
||||||
if [ -z "$(which $UPDATE_CERTS_CMD)" ]; then
|
if [ -z "$(which $UPDATE_CERTS_CMD)" ]; then
|
||||||
|
|
Loading…
Reference in New Issue