-
Notifications
You must be signed in to change notification settings - Fork 456
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #223 from hashicorp/vault-9832/better-plugin-error…
…-message Add more helpful message on plugin setup failure
- Loading branch information
Showing
9 changed files
with
158 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
windows-amd64.exe | ||
windows-386.exe | ||
linux-amd64 | ||
darwin-amd64 | ||
darwin-arm64 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
default: all | ||
.PHONY: default | ||
|
||
.PHONY: clean | ||
clean: | ||
rm -f windows-amd64.exe windows-386.exe linux-amd64 darwin-amd64 darwin-arm64 | ||
|
||
.PHONY: all | ||
all: windows-amd64.exe windows-386.exe linux-amd64 darwin-amd64 darwin-arm64 | ||
|
||
.PHONY: windows-amd64.exe | ||
windows-amd64.exe: | ||
GOOS=windows GOARCH=amd64 go build -o $@ | ||
|
||
.PHONY: windows-386.exe | ||
windows-386.exe: | ||
GOOS=windows GOARCH=386 go build -o $@ | ||
|
||
.PHONY: linux-amd64 | ||
linux-amd64: | ||
GOOS=linux GOARCH=amd64 go build -o $@ | ||
|
||
.PHONY: darwin-amd64 | ||
darwin-amd64: | ||
GOOS=darwin GOARCH=amd64 go build -o $@ | ||
|
||
.PHONY: darwin-arm64 | ||
darwin-arm64: | ||
GOOS=darwin GOARCH=arm64 go build -o $@ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
This folder contains a minimal Go program so that we can obtain example binaries of programs for various architectures for use in tests. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
module example.com/testdata | ||
|
||
go 1.19 |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
package main | ||
|
||
func main() { | ||
} |