diff --git a/README.md b/README.md
index adb60dc..d14ac11 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-
+

@@ -96,4 +96,4 @@ chmod +x uninstaller.sh
-
\ No newline at end of file
+
diff --git a/scripts/sharedFuncs.sh b/scripts/sharedFuncs.sh
index dc61407..aaa582a 100644
--- a/scripts/sharedFuncs.sh
+++ b/scripts/sharedFuncs.sh
@@ -203,11 +203,11 @@ function download_component() {
elif [ "$curlpkg" == "true" ];then
show_message "using curl to download $4"
- curl $3 -o $1
+ curl -k $3 -o $1
downrez=$?
else
show_message "using wget to download $4"
- wget "$3" -P "$CACHE_PATH"
+ wget --no-check-certificate "$3" -P "$CACHE_PATH"
downrez=$?
fi
if [ "$downrez" -eq 0 ];then