cutego/setup.bat

12 lines
548 B
Batchfile
Raw Normal View History

2016-06-11 02:50:53 +03:00
go get golang.org/x/crypto/ssh
if %errorlevel% neq 0 exit /b %errorlevel%
2016-08-21 06:00:42 +03:00
go get github.com/emirpasic/gods/lists/arraylist
2016-08-20 03:25:33 +03:00
if %errorlevel% neq 0 exit /b %errorlevel%
2015-11-13 20:44:32 +03:00
go run ./internal/setup/check.go %*
if %errorlevel% neq 0 exit /b %errorlevel%
2015-11-19 21:29:30 +03:00
go run %GOPATH%/src/github.com/therecipe/qt/internal/setup/generate.go %*
2015-11-13 20:44:32 +03:00
if %errorlevel% neq 0 exit /b %errorlevel%
2015-11-19 21:29:30 +03:00
go run %GOPATH%/src/github.com/therecipe/qt/internal/setup/install.go %*
2015-11-13 20:44:32 +03:00
if %errorlevel% neq 0 exit /b %errorlevel%
2015-11-19 21:29:30 +03:00
go run %GOPATH%/src/github.com/therecipe/qt/internal/setup/test.go %*