File tree Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Expand file tree Collapse file tree 1 file changed +0
-7
lines changed Original file line number Diff line number Diff line change 9
9
# First look for python bundled in Emsdk
10
10
if [ -z " $EMSDK_PYTHON " ]; then
11
11
PYTHON3=" $( dirname " $0 " ) /python/3.9.2-1_64bit/bin/python3"
12
- PYTHON3_CERT_FILE=" $( dirname " $0 " ) /python/3.9.2-1_64bit/lib/python3.9/site-packages/certifi/cacert.pem"
13
12
if [ ! -f " $PYTHON3 " ]; then
14
13
PYTHON3=" $( dirname " $0 " ) /python/3.7.4-2_64bit/bin/python3"
15
- PYTHON3_CERT_FILE=" $( dirname " $0 " ) /python/3.7.4-2_64bit/lib/python3.7/site-packages/certifi/cacert.pem"
16
14
fi
17
15
if [ -f " $PYTHON3 " ]; then
18
16
EMSDK_PYTHON=" $PYTHON3 "
@@ -22,11 +20,6 @@ if [ -z "$EMSDK_PYTHON" ]; then
22
20
# https://github.com/emscripten-core/emsdk/issues/598
23
21
unset PYTHONHOME
24
22
unset PYTHONPATH
25
-
26
- # This is needed for MacOS. Without this, the urlopen
27
- # code will try to use /usr/local/etc/openssl/cert.pem
28
- # which may or may not exist on the system.
29
- export SSL_CERT_FILE=" $PYTHON3_CERT_FILE "
30
23
fi
31
24
fi
32
25
You can’t perform that action at this time.
0 commit comments