vendor: update all dependencies

This commit is contained in:
Nick Craig-Wood 2018-03-19 15:51:38 +00:00
parent 940df88eb2
commit d64789528d
4309 changed files with 1327278 additions and 1001118 deletions

View file

@ -5,9 +5,15 @@ go:
- 1.7.x
- 1.8.x
- 1.9.x
install: go get -u golang.org/x/oauth2
before_script: go get -u github.com/mitchellh/gox
script: gox -osarch="darwin/amd64 linux/amd64 windows/amd64" ./dropbox/...
script:
- set -e
- GOOS=linux GOARCH=amd64 go install ./dropbox/...
- GOOS=darwin GOARCH=amd64 go install ./dropbox/...
- GOOS=windows GOARCH=amd64 go install ./dropbox/...
- set +e
jobs:
include:

View file

@ -21,12 +21,12 @@
package dropbox
import (
"context"
"fmt"
"io"
"log"
"net/http"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)

View file

@ -21,12 +21,12 @@
package dropbox
import (
"context"
"fmt"
"io"
"log"
"net/http"
"golang.org/x/net/context"
"golang.org/x/oauth2"
)