Skip to content

Commit

Permalink
#327 don't verify certificate when curling
Browse files Browse the repository at this point in the history
  • Loading branch information
ecwood committed Jul 19, 2023
1 parent 4b8a30a commit f12dfb6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion master-config.shinc
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ s3_bucket_public=rtx-kg2-public
s3_bucket_versioned=rtx-kg2-versioned
s3_cp_cmd="aws s3 cp --no-progress --region ${s3_region}"
mysql_conf=${BUILD_DIR}/mysql-config.conf
curl_get="curl -s -L -f"
curl_get="curl -s -L -f -k"
curies_to_categories_file=${CODE_DIR}/curies-to-categories.yaml
curies_to_urls_file=${CODE_DIR}/curies-to-urls-map.yaml
predicate_mapping_file=${CODE_DIR}/predicate-remap.yaml
Expand Down
2 changes: 1 addition & 1 deletion setup-python37-with-pip3-in-ubuntu.shinc
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ sudo -E add-apt-repository -y ppa:deadsnakes/ppa
sudo apt-get install -y python3.7 python3.7-dev python3.7-venv

# some shenanigans required in order to install pip into python3.7 (not into python3.6!)
wget https://bootstrap.pypa.io/get-pip.py -O /tmp/get-pip.py
curl -s -k https://bootstrap.pypa.io/get-pip.py -o /tmp/get-pip.py
apt-get download python3-distutils
if [ -f python3-distutils_3.6.9-1~18.04_all.deb ]
then
Expand Down

0 comments on commit f12dfb6

Please sign in to comment.