Skip to content

Commit

Permalink
no-check-certificate for sklearn
Browse files Browse the repository at this point in the history
  • Loading branch information
Zhuoxuan-Zhang committed Oct 24, 2024
1 parent fd3ebf1 commit 0372023
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions oneliners/input.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down

0 comments on commit 0372023

Please sign in to comment.