Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(windvalley/gossh): exclude windows #4165

Merged
merged 1 commit into from
Jun 17, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions pkgs/windvalley/gossh/registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ packages:
- type: github_release
repo_owner: windvalley
repo_name: gossh
description: Gossh is a high-performance and high-concurrency ssh tool
format: raw
rosetta2: true
supported_if: GOOS == "darwin" or (GOOS == "linux" and GOARCH == "amd64")
asset: "gossh-{{.Version}}-{{.OS}}-{{.Arch}}"
supported_if: not (GOOS == "linux" and GOARCH == "arm64")
description: Gossh is a high-performance and high-concurrency ssh tool
2 changes: 1 addition & 1 deletion registry.json
Original file line number Diff line number Diff line change
Expand Up @@ -8826,7 +8826,7 @@
"repo_name": "gossh",
"repo_owner": "windvalley",
"rosetta2": true,
"supported_if": "not (GOOS == \"linux\" and GOARCH == \"arm64\")",
"supported_if": "GOOS == \"darwin\" or (GOOS == \"linux\" and GOARCH == \"amd64\")",
"type": "github_release"
},
{
Expand Down
4 changes: 2 additions & 2 deletions registry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5925,11 +5925,11 @@ packages:
- type: github_release
repo_owner: windvalley
repo_name: gossh
description: Gossh is a high-performance and high-concurrency ssh tool
format: raw
rosetta2: true
supported_if: GOOS == "darwin" or (GOOS == "linux" and GOARCH == "amd64")
asset: "gossh-{{.Version}}-{{.OS}}-{{.Arch}}"
supported_if: not (GOOS == "linux" and GOARCH == "arm64")
description: Gossh is a high-performance and high-concurrency ssh tool
- type: github_release
repo_owner: wtfutil
repo_name: wtf
Expand Down