Add github.com/krishicks/yaml-patch to vendor

This commit is contained in:
Jingfang Liu
2018-08-30 13:45:25 -07:00
parent a81b2e32e0
commit 95cf508b2b
19 changed files with 1882 additions and 0 deletions

17
vendor/github.com/krishicks/yaml-patch/Makefile generated vendored Normal file
View File

@@ -0,0 +1,17 @@
CGO_ENABLED=0
all: windows linux darwin
linux:
GOOS=linux GOARCH=amd64 go build -o yaml_patch_linux cmd/yaml-patch/*.go
windows:
GOOS=windows GOARCH=amd64 go build -o yaml_patch.exe cmd/yaml-patch/*.go
darwin:
GOOS=darwin GOARCH=amd64 go build -o yaml_patch_darwin cmd/yaml-patch/*.go
clean:
rm yaml_patch_linux
rm yaml_patch.exe
rm yaml_patch_darwin