From ec2d7efe0e2a8af4410b98129a897a9426f01deb Mon Sep 17 00:00:00 2001 From: emile Date: Wed, 27 Jan 2016 11:00:13 +0100 Subject: [PATCH] Add --quick to glide up --- README.md | 4 ++-- build.Dockerfile | 2 +- glide.yaml | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index cbb34d536..f8998ce2c 100644 --- a/README.md +++ b/README.md @@ -115,14 +115,14 @@ traefik* The idea behind `glide` is the following : -- when checkout(ing) a project, **run `glide up`** to install +- when checkout(ing) a project, **run `glide up --quick`** to install (`go get …`) the dependencies in the `GOPATH`. - if you need another dependency, import and use it in the source, and **run `glide get github.com/Masterminds/cookoo`** to save it in `vendor` and add it to your `glide.yaml`. ```bash -$ glide up --update-vendored +$ glide up --quick # generate $ go generate # Simple go build diff --git a/build.Dockerfile b/build.Dockerfile index 52b2cb9be..eb9532d6c 100644 --- a/build.Dockerfile +++ b/build.Dockerfile @@ -23,6 +23,6 @@ RUN ln -s /usr/local/bin/docker-${DOCKER_VERSION} /usr/local/bin/docker WORKDIR /go/src/github.com/emilevauge/traefik COPY glide.yaml glide.yaml -RUN glide up +RUN glide up --quick COPY . /go/src/github.com/emilevauge/traefik diff --git a/glide.yaml b/glide.yaml index 68e15321e..fd31cc94f 100644 --- a/glide.yaml +++ b/glide.yaml @@ -136,7 +136,7 @@ import: - package: gopkg.in/fsnotify.v1 ref: 96c060f6a6b7e0d6f75fddd10efeaca3e5d1bcb0 - package: github.com/mailgun/manners - ref: 37136f736785d7c6aa3b9a27b4b2dd1028ca6d79 + ref: fada45142db3f93097ca917da107aa3fad0ffcb5 - package: github.com/gorilla/context ref: 215affda49addc4c8ef7e2534915df2c8c35c6cd - package: github.com/codahale/hdrhistogram