Browse Source

tech(build): update makefile

bergquist 9 years ago
parent
commit
d3a5d5c058
1 changed files with 1 additions and 2 deletions
  1. 1 2
      Makefile

+ 1 - 2
Makefile

@@ -2,7 +2,6 @@ all: deps build
 
 deps:
 	go run build.go setup
-	godep restore
 	npm install
 
 build:
@@ -10,7 +9,7 @@ build:
 	npm run build
 
 test:
-	godep go test -v ./pkg/...
+	go test -v ./pkg/...
 	npm test
 
 run: