Skip to content
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
9 changes: 7 additions & 2 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,21 +10,26 @@ builds:
goos:
- darwin
- linux
- windows
goarch:
- amd64
- arm64

archives:
- formats:
- tar.gz
format_overrides:
- goos: windows
formats:
- zip
name_template: "shellguard_{{ .Os }}_{{ .Arch }}"

homebrew_casks:
- name: shellguard
binaries:
- shellguard
repository:
owner: jonchun
owner: fawdyinc
name: homebrew-tap
token: "{{ .Env.HOMEBREW_TAP_TOKEN }}"
homepage: https://github.com/fawdyinc/shellguard
Expand All @@ -41,5 +46,5 @@ checksum:

release:
github:
owner: jonchun
owner: fawdyinc
name: shellguard
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,13 @@ Commands are restricted to a curated set of observation and diagnostic tools. De
### Install

```bash
brew install jonchun/tap/shellguard
brew install fawdyinc/tap/shellguard
```

Or download the latest binary:

```bash
curl -fsSL https://raw.githubusercontent.com/jonchun/shellguard/main/install.sh | sh
curl -fsSL https://raw.githubusercontent.com/fawdyinc/shellguard/main/install.sh | sh
```

Or with Go:
Expand Down
2 changes: 1 addition & 1 deletion install.sh
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
#!/bin/sh
set -e

REPO="jonchun/shellguard"
REPO="fawdyinc/shellguard"
INSTALL_DIR="${SHELLGUARD_INSTALL_DIR:-/usr/local/bin}"

main() {
Expand Down