Fix prysm.bat internet warning (#5908)

* Fix bat
* Remove %
* Merge branch 'master' into fix-bat
This commit is contained in:
Ivan Martinez 2020-05-19 13:24:47 -04:00 committed by GitHub
parent 5e6a5902ae
commit aa6190235a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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%27) 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.  && exit /b 1)
echo Latest prysm release is %prysm_version%.
IF defined USE_PRYSM_VERSION (
echo detected variable USE_PRYSM_VERSION=%USE_PRYSM_VERSION%