Skip to content

Commit

Permalink
fix: add ca-certificates support for termux in run_toxic.sh
Browse files Browse the repository at this point in the history
  • Loading branch information
Tha14 authored and JFreegman committed Nov 22, 2023
1 parent 114465b commit 5fba494
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions script/build-minimal-static-toxic.sh
Original file line number Diff line number Diff line change
Expand Up @@ -277,6 +277,7 @@ echo '#!/usr/bin/env sh
DEBIAN_SSL_CERT_FILE=/etc/ssl/certs/ca-certificates.crt
RHEL_SSL_CERT_FILE=/etc/pki/tls/certs/ca-bundle.crt
OPENSUSE_CERT_FILE=/etc/ssl/ca-bundle.pem
TERMUX_CERT_FILE=/data/data/com.termux/files/usr/etc/tls/cert.pem
if [ ! -f "$SSL_CERT_FILE" ] ; then
if [ -f "$DEBIAN_SSL_CERT_FILE" ] ; then
Expand All @@ -285,6 +286,8 @@ if [ ! -f "$SSL_CERT_FILE" ] ; then
SSL_CERT_FILE="$RHEL_SSL_CERT_FILE"
elif [ -f "$OPENSUSE_CERT_FILE" ] ; then
SSL_CERT_FILE="$OPENSUSE_CERT_FILE"
elif [ -f "$TERMUX_CERT_FILE" ] ; then
SSL_CERT_FILE="$TERMUX_CERT_FILE"
fi
fi
Expand Down

0 comments on commit 5fba494

Please sign in to comment.