Skip to content

Commit

Permalink
update to latest aws-sdk-go (#380)
Browse files Browse the repository at this point in the history
  • Loading branch information
fierlion authored Dec 2, 2020
1 parent d2153a8 commit 7060c3f
Show file tree
Hide file tree
Showing 80 changed files with 12,915 additions and 2,182 deletions.
17 changes: 17 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,22 @@ dev:
generate:
PATH=$(PATH):$(shell pwd)/scripts go generate -v ./...

PLATFORM:=$(shell uname -s)
ifeq (${PLATFORM},Linux)
dep_arch=linux-386
else ifeq (${PLATFORM},Darwin)
dep_arch=darwin-386
endif

DEP_VERSION=v0.5.0
.PHONY: get-dep
get-dep: bin/dep

bin/dep:
mkdir -p ./bin
curl -L https://github.com/golang/dep/releases/download/$(DEP_VERSION)/dep-${dep_arch} -o ./bin/dep
chmod +x ./bin/dep

static:
./scripts/gobuild.sh

Expand Down Expand Up @@ -123,6 +139,7 @@ clean:
-rm -f amazon-ecs-volume-plugin.conf
-rm -f amazon-ecs-volume-plugin.service
-rm -f amazon-ecs-volume-plugin.socket
-rm -rf ./bin
-rm -f ./sources.tgz
-rm -f ./amazon-ecs-init
-rm -f ./ecs-agent-*.tar
Expand Down
15 changes: 10 additions & 5 deletions ecs-init/Gopkg.lock

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

2 changes: 1 addition & 1 deletion ecs-init/Gopkg.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@

[[constraint]]
name = "github.com/aws/aws-sdk-go"
version = "1.27.0"
version = "1.35.37"

[prune]
go-tests = true
Expand Down

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

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

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

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

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

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

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

Loading

0 comments on commit 7060c3f

Please sign in to comment.