From 03720235828ee6d9c82b2ca880bd8e420ad59222 Mon Sep 17 00:00:00 2001 From: ZhuoxuanZhangHarry Date: Thu, 24 Oct 2024 16:44:25 -0400 Subject: [PATCH] no-check-certificate for sklearn --- oneliners/input.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/oneliners/input.sh b/oneliners/input.sh index b2b5e9a6..8ed4dd15 100755 --- a/oneliners/input.sh +++ b/oneliners/input.sh @@ -7,7 +7,7 @@ cd inputs input_files=("1M.txt" "1G.txt" "3G.txt" "all_cmds.txt" "all_cmdsx100.txt" "dict.txt") if [ ! -f ./1M.txt ]; then - wget https://atlas-group.cs.brown.edu/data/dummy/1M.txt + wget --no-check-certificate https://atlas-group.cs.brown.edu/data/dummy/1M.txt # TODO: Add newline to the original file echo >> 1M.txt fi @@ -27,7 +27,7 @@ if [ ! -f ./3G.txt ]; then fi if [ ! -f ./dict.txt ]; then - wget -O - https://atlas-group.cs.brown.edu/data/dummy/dict.txt | sort > dict.txt + wget -O - https://atlas-group.cs.brown.edu/data/dummy/dict.txt --no-check-certificate | sort > dict.txt fi if [ ! -f ./all_cmds.txt ]; then