cutego/setup.bat

12 lines
593 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
@ if %errorlevel% neq 0 exit /b %errorlevel%
go run %GOPATH%/src/github.com/therecipe/qt/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 %*
@ 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 %*
@ 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 %*