update lock

This commit is contained in:
Jon Lundy 2018-03-15 11:03:29 -06:00
parent d919601098
commit dd19874d6a
Signed by untrusted user who does not match committer: xuu
GPG Key ID: 346DF999B2530DAE
2 changed files with 15 additions and 5 deletions

14
Gopkg.lock generated
View File

@ -7,6 +7,12 @@
revision = "784ddc588536785e7299f7272f39101f7faccc3f" revision = "784ddc588536785e7299f7272f39101f7faccc3f"
version = "0.6.2" version = "0.6.2"
[[projects]]
name = "github.com/elazarl/go-bindata-assetfs"
packages = ["."]
revision = "30f82fa23fd844bd5bb1e5f216db87fd77b5eb43"
version = "v1.0.0"
[[projects]] [[projects]]
name = "github.com/fsnotify/fsnotify" name = "github.com/fsnotify/fsnotify"
packages = ["."] packages = ["."]
@ -96,13 +102,13 @@
branch = "master" branch = "master"
name = "golang.org/x/net" name = "golang.org/x/net"
packages = ["context"] packages = ["context"]
revision = "803fdb99c0f72e493c28ef2099d250a9c989d8ff" revision = "e0c57d8f86c17f0724497efcb3bc617e82834821"
[[projects]] [[projects]]
branch = "master" branch = "master"
name = "golang.org/x/sys" name = "golang.org/x/sys"
packages = ["unix"] packages = ["unix"]
revision = "8c0ece68c28377f4c326d85b94f8df0dace46f80" revision = "cc7307a45468e49eaf2997c890f14aa03a26917b"
[[projects]] [[projects]]
name = "golang.org/x/text" name = "golang.org/x/text"
@ -132,11 +138,11 @@
"log", "log",
"uuid" "uuid"
] ]
revision = "41be9e5a06267b805ab1fa4ba928232865798133" revision = "e423bb039419097aa705ac480aee495868494b38"
[solve-meta] [solve-meta]
analyzer-name = "dep" analyzer-name = "dep"
analyzer-version = 1 analyzer-version = 1
inputs-digest = "dda0f77480b1bdc7057ae5b9a5a2e4c69d745c50200eac736cc41ba9d76e67ce" inputs-digest = "f0136e5899d85670e4bb91c85db638b8d50d74cac1d00e96c714c7ec61513d5f"
solver-name = "gps-cdcl" solver-name = "gps-cdcl"
solver-version = 1 solver-version = 1

View File

@ -19,7 +19,7 @@ export DUMMY_BINDATA
all: $(BINARY) all: $(BINARY)
clean: clean:
rm -rf $(BINARY) $(ROUTE_ASSET) public/ rm -rf $(BINARY) $(ROUTE_ASSET) $(DOCS_ASSET)
setup: setup:
dep ensure dep ensure
@ -28,6 +28,10 @@ setup:
git submodule update git submodule update
cd assets; npm i cd assets; npm i
ensure:
dep ensure -update
dep status
run: $(BINARY) run: $(BINARY)
./$(BINARY) -vv serve ./$(BINARY) -vv serve