From a98278ac15164a65edd2ecf33dcdf8bed338a470 Mon Sep 17 00:00:00 2001 From: Jingwen Owen Ou Date: Thu, 14 Nov 2013 08:39:25 -0800 Subject: [PATCH] Update scripts to point to godep --- script/bootstrap | 5 ++--- script/build | 2 +- script/fmt | 2 +- script/test | 2 +- 4 files changed, 5 insertions(+), 6 deletions(-) diff --git a/script/bootstrap b/script/bootstrap index c6b2a4e1..fd556757 100755 --- a/script/bootstrap +++ b/script/bootstrap @@ -1,5 +1,4 @@ #!/bin/bash -go get -d -v ./... -go get -u github.com/bmizerany/assert -go get -u github.com/jingweno/gotask +go get github.com/kr/godep +go get github.com/jingweno/gotask diff --git a/script/build b/script/build index a3093fba..801273ef 100755 --- a/script/build +++ b/script/build @@ -1,4 +1,4 @@ #!/bin/bash script/bootstrap -go build -v ./... +godep go build -v ./... diff --git a/script/fmt b/script/fmt index 95fcd151..c55d90bc 100755 --- a/script/fmt +++ b/script/fmt @@ -1,3 +1,3 @@ #!/bin/bash -go fmt ./... +godep go fmt ./... diff --git a/script/test b/script/test index d89d9c01..73d1ff14 100755 --- a/script/test +++ b/script/test @@ -1,4 +1,4 @@ #!/bin/bash script/fmt -go test -v ./... +godep go test -v ./...