diff --git a/prysm.bat b/prysm.bat index 998fe4d1d..770c3cb72 100644 --- a/prysm.bat +++ b/prysm.bat @@ -47,7 +47,7 @@ if %WinOS%==64BIT ( mkdir %wrapper_dir% REM get_prysm_version - Find the latest Prysm version available for download. -(for /f %%i in ('curl -f -s https://prysmaticlabs.com/releases/latest') do set prysm_version=%%i) || (echo ERROR: Starting prysm requires an internet connection.  && exit /b 1) +(for /f %%i in ('curl -f -s https://prysmaticlabs.com/releases/latest') do set prysm_version=%%i) || (echo ERROR: Starting prysm requires an internet connection. If you are being blocked by your antivirus, you can re-run with --ssl-no-revoke  && exit /b 1) echo Latest prysm release is %prysm_version%. IF defined USE_PRYSM_VERSION ( echo detected variable USE_PRYSM_VERSION=%USE_PRYSM_VERSION% diff --git a/prysm.sh b/prysm.sh index 4050af47b..bf2b43dd4 100755 --- a/prysm.sh +++ b/prysm.sh @@ -107,7 +107,7 @@ function get_prysm_version() { else # Find the latest Prysm version available for download. readonly reason="automatically selected latest available version" - prysm_version=$(curl -f -s https://prysmaticlabs.com/releases/latest) || (color "31" "Starting prysm requires an internet connection." && exit 1) + prysm_version=$(curl -f -s https://prysmaticlabs.com/releases/latest) || (color "31" "Starting prysm requires an internet connection. If you are being blocked by your antivirus, you can re-run with --ssl-no-revoke" && exit 1) readonly prysm_version fi }