Skip to content

Commit

Permalink
ci: Build binary named ldcli (#24)
Browse files Browse the repository at this point in the history
Build binary named ldcli instead of ld-cli
  • Loading branch information
dbolson authored Mar 13, 2024
1 parent 57ea052 commit c2cd1b1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
go-version: '1.20'

- name: Build
run: go build -v ./...
run: go build -o ldcli

- name: Test
run: go test -v ./...
2 changes: 1 addition & 1 deletion cmd/root.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
)

var rootCmd = &cobra.Command{
Use: "ld-cli",
Use: "ldcli",
Short: "LaunchDarkly CLI",
Long: "LaunchDarkly CLI to control your feature flags",
}
Expand Down

0 comments on commit c2cd1b1

Please sign in to comment.