Skip to content

Commit a065203

Browse files
committed
Added --no-check-certificate argument to wget in buildcmake to work around a security problem.
Signed-off-by: Damian Rouson <[email protected]>
1 parent ef5b511 commit a065203

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

install_prerequisites/buildcmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ download()
130130
if [ ! -f "cmake-$version.tar.gz" ]; then
131131
echo "Downloading cmake-$version.tar.gz"
132132
major_minor="${version%.*}"
133-
wget http://www.cmake.org/files/v$major_minor/cmake-$version.tar.gz
133+
wget --no-check-certificate http://www.cmake.org/files/v$major_minor/cmake-$version.tar.gz
134134
fi
135135
}
136136

0 commit comments

Comments
 (0)