1
0
mirror of https://github.com/go-task/task.git synced 2024-12-12 10:45:49 +02:00

Taskfile: add update-deps task

This commit is contained in:
Andrey Nering 2017-06-14 14:00:07 -03:00
parent ad3f439cb5
commit ba494702ed
2 changed files with 14 additions and 0 deletions

8
.gitignore vendored
View File

@ -15,3 +15,11 @@
./task
dist/
vendor/**
!vendor/**/*.go
!vendor/**/LICENSE
!vendor/**/COPYING
!vendor/**/README
!vendor/**/README.md
vendor/**/*_test.go

View File

@ -10,6 +10,12 @@ dl-deps:
cmds:
- go get -u github.com/golang/lint/golint
- go get -u github.com/goreleaser/goreleaser
- go get -u github.com/golang/dep/cmd/dep
update-deps:
cmds:
- dep ensure
- dep prune
lint:
desc: Runs golint