15 lines
250 B
Batchfile
15 lines
250 B
Batchfile
|
|
@echo off
|
||
|
|
echo Testing Go installation...
|
||
|
|
echo.
|
||
|
|
echo Checking Go version...
|
||
|
|
"C:\Program Files\Go\bin\go.exe" version
|
||
|
|
if %errorlevel% == 0 (
|
||
|
|
echo.
|
||
|
|
echo SUCCESS: Go is working!
|
||
|
|
) else (
|
||
|
|
echo.
|
||
|
|
echo ERROR: Go is not working
|
||
|
|
)
|
||
|
|
echo.
|
||
|
|
pause
|