From 705c08dfd978891957dd00453dc69715bba1fb36 Mon Sep 17 00:00:00 2001 From: therecipe Date: Sun, 21 Aug 2016 05:00:42 +0200 Subject: [PATCH] fix setup again --- setup.bat | 2 +- setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.bat b/setup.bat index 621e8b1e..a3267afe 100755 --- a/setup.bat +++ b/setup.bat @@ -1,6 +1,6 @@ go get golang.org/x/crypto/ssh if %errorlevel% neq 0 exit /b %errorlevel% -go get github.com/emirpasic/gods +go get github.com/emirpasic/gods/lists/arraylist if %errorlevel% neq 0 exit /b %errorlevel% go run ./internal/setup/check.go %* if %errorlevel% neq 0 exit /b %errorlevel% diff --git a/setup.sh b/setup.sh index a1f63032..57081d18 100755 --- a/setup.sh +++ b/setup.sh @@ -1,7 +1,7 @@ #!/bin/sh set -e go get golang.org/x/crypto/ssh -go get github.com/emirpasic/gods +go get github.com/emirpasic/gods/lists/arraylist go run ./internal/setup/check.go "$@" go run $GOPATH/src/github.com/therecipe/qt/internal/setup/generate.go "$@" go run $GOPATH/src/github.com/therecipe/qt/internal/setup/install.go "$@"