diff options
author | Alex Pilon <apilon@hashicorp.com> | 2019-02-22 18:24:22 -0500 |
---|---|---|
committer | Alex Pilon <apilon@hashicorp.com> | 2019-02-22 18:24:22 -0500 |
commit | 07971ca38143c5faf951d152fba370ddcbe26ad5 (patch) | |
tree | 09af1ef91c782de921efc83113907184c8adecee /vendor/github.com/rancher/go-rancher/Makefile | |
parent | 9b6f05970a001f683b9c886c652de81f00cd5f00 (diff) | |
download | terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.tar.gz terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.tar.zst terraform-provider-statuscake-07971ca38143c5faf951d152fba370ddcbe26ad5.zip |
deps: use go modules for dep mgmt
run go mod tidy
remove govendor from makefile and travis config
set appropriate env vars for go modules
Diffstat (limited to 'vendor/github.com/rancher/go-rancher/Makefile')
-rw-r--r-- | vendor/github.com/rancher/go-rancher/Makefile | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/vendor/github.com/rancher/go-rancher/Makefile b/vendor/github.com/rancher/go-rancher/Makefile deleted file mode 100644 index d7d72a1..0000000 --- a/vendor/github.com/rancher/go-rancher/Makefile +++ /dev/null | |||
@@ -1,23 +0,0 @@ | |||
1 | TARGETS := $(shell ls scripts) | ||
2 | |||
3 | .dapper: | ||
4 | @echo Downloading dapper | ||
5 | @curl -sL https://releases.rancher.com/dapper/latest/dapper-`uname -s`-`uname -m` > .dapper.tmp | ||
6 | @@chmod +x .dapper.tmp | ||
7 | @./.dapper.tmp -v | ||
8 | @mv .dapper.tmp .dapper | ||
9 | |||
10 | $(TARGETS): .dapper | ||
11 | ./.dapper $@ | ||
12 | |||
13 | trash: .dapper | ||
14 | ./.dapper -m bind trash | ||
15 | |||
16 | trash-keep: .dapper | ||
17 | ./.dapper -m bind trash -k | ||
18 | |||
19 | deps: trash | ||
20 | |||
21 | .DEFAULT_GOAL := ci | ||
22 | |||
23 | .PHONY: $(TARGETS) | ||