Skip to content

Commit

Permalink
Updating catchphrase
Browse files Browse the repository at this point in the history
  • Loading branch information
willvedd committed Dec 19, 2022
1 parent 5461117 commit e80df7e
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 35 deletions.
61 changes: 30 additions & 31 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
# Documentation at http://goreleaser.com
builds:
- main: ./cmd/auth0
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- darwin
- linux
- windows
binary: auth0
ldflags:
- main: ./cmd/auth0
env:
- CGO_ENABLED=0
goarch:
- amd64
- arm64
goos:
- darwin
- linux
- windows
binary: auth0
ldflags:
- -X 'github.com/auth0/auth0-cli/internal/buildinfo.Version={{.Version}}'
- -X 'github.com/auth0/auth0-cli/internal/buildinfo.Revision={{.Commit}}'
- -X 'github.com/auth0/auth0-cli/internal/buildinfo.BuildUser=goreleaser'
Expand Down Expand Up @@ -40,36 +40,35 @@ changelog:
- "^docs:"
- "^test:"
brews:
-
name: auth0
- name: auth0
tap:
owner: auth0
name: homebrew-auth0-cli
commit_author:
name: auth0
email: support@auth0.com
homepage: https://auth0.github.io/auth0-cli
description: Auth0 command-line tool to supercharge your developer workflow
description: Build, manage and test your Auth0 integrations from the command line
license: MIT
skip_upload: auto
install: |
bin.install "auth0"
bin.install "auth0"
(bash_completion/"auth0").write `#{bin}/auth0 completion bash`
(fish_completion/"auth0.fish").write `#{bin}/auth0 completion fish`
(zsh_completion/"_auth0").write `#{bin}/auth0 completion zsh`
(bash_completion/"auth0").write `#{bin}/auth0 completion bash`
(fish_completion/"auth0.fish").write `#{bin}/auth0 completion fish`
(zsh_completion/"_auth0").write `#{bin}/auth0 completion zsh`
caveats: "Thanks for installing the Auth0 CLI"
scoop:
name: auth0
bucket:
owner: auth0
name: scoop-auth0-cli
commit_author:
name: auth0
bucket:
owner: auth0
name: scoop-auth0-cli
commit_author:
name: auth0
email: support@auth0.com
commit_msg_template: "Scoop manifest update for {{ .ProjectName }} version {{ .Tag }}"
homepage: https://auth0.github.io/auth0-cli
description: Auth0 command-line tool to supercharge your developer workflow
license: MIT
skip_upload: auto
post_install: ["Write-Host 'Thanks for installing the Auth0 CLI'"]
email: support@auth0.com
commit_msg_template: "Scoop manifest update for {{ .ProjectName }} version {{ .Tag }}"
homepage: https://auth0.github.io/auth0-cli
description: Build, manage and test your Auth0 integrations from the command line
license: MIT
skip_upload: auto
post_install: ["Write-Host 'Thanks for installing the Auth0 CLI'"]
5 changes: 2 additions & 3 deletions docs/_config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,15 +3,14 @@

title: Auth0 CLI
description: >-
auth0 is the command line to supercharge your development workflow.
Build, manage and test your Auth0 integrations from the command line.
baseurl: "/auth0-cli"
url: "" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: auth0
github_username: auth0
github_username: auth0

# Build settings
theme: minima

header_pages:
- about.markdown

2 changes: 1 addition & 1 deletion internal/cli/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import (
"github.com/auth0/auth0-cli/internal/instrumentation"
)

const rootShort = "Supercharge your development workflow."
const rootShort = "Build, manage and test your Auth0 integrations from the command line."

// Execute is the primary entrypoint of the CLI app.
func Execute() {
Expand Down

0 comments on commit e80df7e

Please sign in to comment.