Skip to content

Commit 0dd448c

Browse files
committed
Allow insecure downloads of the toolchain
1 parent 63347f8 commit 0dd448c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tools/install-esp-idf.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ if ! [ -x "$(command -v $IDF_TOOLCHAIN-gcc)" ]; then
4949
exit 1
5050
fi
5151
echo "Downloading $TC_LINK"
52-
curl -o $IDF_TOOLCHAIN.$TC_EXT $TC_LINK || exit 1
52+
curl -k -o $IDF_TOOLCHAIN.$TC_EXT $TC_LINK || exit 1
5353
fi
5454
if [[ "$AR_OS" == "win32" ]]; then
5555
unzip $IDF_TOOLCHAIN.$TC_EXT || exit 1

0 commit comments

Comments
 (0)