Skip to content

Commit

Permalink
Update dependencies and respect lock file in Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
maximbaz committed Feb 13, 2019
1 parent 7ca8d40 commit 9c160b4
Show file tree
Hide file tree
Showing 3 changed files with 30 additions and 11 deletions.
35 changes: 27 additions & 8 deletions Gopkg.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions Gopkg.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[[constraint]]
name = "github.com/rjeczalik/notify"
branch = "master"
version = "0.9.2"

[[constraint]]
name = "github.com/sirupsen/logrus"
version = "1.0.3"
version = "1.3.0"
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ GO_LDFLAGS := "-extldflags ${LDFLAGS}"
all: deps build

deps:
dep ensure
dep ensure -vendor-only

build: main.go detector/ notifier/
go build -ldflags $(GO_LDFLAGS) -gcflags $(GO_GCFLAGS) -asmflags $(GO_ASMFLAGS) -o $(APP_NAME) main.go
Expand Down

0 comments on commit 9c160b4

Please sign in to comment.