Skip to content

Commit b069c6f

Browse files
author
Johann Fuechsl
committed
chore(deps): Move to go modules; Upgrade distribution to latest version.
1 parent df28b82 commit b069c6f

5 files changed

Lines changed: 202 additions & 174 deletions

File tree

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ else
88
GOOS=linux
99
endif
1010

11-
DEV_ENV_IMAGE := quay.io/deis/go-dev:0.11.1
11+
DEV_ENV_IMAGE := quay.io/deis/go-dev:v1.27.1
1212
DEV_ENV_WORK_DIR := /go/src/${REPO_PATH}
1313
DEV_ENV_PREFIX := docker run --rm -e GO15VENDOREXPERIMENT=1 -v ${CURDIR}:${DEV_ENV_WORK_DIR} -w ${DEV_ENV_WORK_DIR}
1414
DEV_ENV_CMD := ${DEV_ENV_PREFIX} ${DEV_ENV_IMAGE}
@@ -40,4 +40,4 @@ binary-build:
4040
dist: build-all
4141

4242
test:
43-
${DEV_ENV_CMD} go test $$(glide nv)
43+
${DEV_ENV_CMD} go test ./...

glide.lock

Lines changed: 0 additions & 131 deletions
This file was deleted.

glide.yaml

Lines changed: 0 additions & 41 deletions
This file was deleted.

go.mod

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
module object-storage-cli
2+
3+
go 1.14
4+
5+
require (
6+
github.com/Azure/azure-sdk-for-go v16.2.1+incompatible // indirect
7+
github.com/Sirupsen/logrus v0.7.3 // indirect
8+
github.com/arschles/assert v0.0.0-20160218172821-d21ecd4884be
9+
github.com/aws/aws-sdk-go v1.15.11 // indirect
10+
github.com/codegangsta/cli v1.13.1-0.20160326223947-bc465becccd1
11+
github.com/deis/object-storage-cli v0.0.0-20180301165133-c4ae08b0bf39
12+
github.com/docker/distribution v0.0.0-00010101000000-000000000000
13+
github.com/go-ini/ini v1.25.4 // indirect
14+
github.com/golang/protobuf v1.3.2 // indirect
15+
github.com/gorilla/context v0.0.0-20140604161150-14f550f51af5 // indirect
16+
github.com/gorilla/mux v1.7.2 // indirect
17+
github.com/jmespath/go-jmespath v0.0.0-20160803190731-bd40a432e4c7 // indirect
18+
github.com/kelseyhightower/envconfig v1.1.1-0.20160316193706-cea086319492
19+
github.com/mitchellh/mapstructure v1.1.2 // indirect
20+
github.com/ncw/swift v1.0.47 // indirect
21+
golang.org/x/net v0.0.0-20190619014844-b5b0513f8c1b // indirect
22+
golang.org/x/oauth2 v0.0.0-20190604053449-0f29369cfe45 // indirect
23+
google.golang.org/api v0.0.0-20160322025152-9bf6e6e569ff // indirect
24+
google.golang.org/appengine v1.4.0 // indirect
25+
google.golang.org/cloud v0.0.0-20151119220103-975617b05ea8 // indirect
26+
google.golang.org/grpc v0.0.0-20160317175043-d3ddb4469d5a // indirect
27+
)
28+
29+
replace github.com/docker/distribution => github.com/teamhephy/distribution v0.0.0-20200427164433-c77f65b80cb8

0 commit comments

Comments
 (0)