Skip to content

Commit f6f71eb

Browse files
committed
fix: remove help from cobra
1 parent 3b3b226 commit f6f71eb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/homebrew.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@ on:
88
push:
99
branches:
1010
- main
11+
1112
jobs:
1213
update-tap:
1314
runs-on: ubuntu-latest
@@ -20,7 +21,7 @@ jobs:
2021
token: ${{ secrets.CODA_HOMEBREW_ACCESS_TOKEN }}
2122

2223
- name: Set Release Name
23-
run: echo "RELEASE_NAME=v0.0.1" >> $GITHUB_ENV
24+
run: echo "RELEASE_NAME=v0.0.2" >> $GITHUB_ENV
2425

2526
- name: Download Release Assets
2627
run: |

cmd/init.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ var rootCmd = &cobra.Command{
2424

2525
func Execute(args []string) {
2626
rootCmd.SetHelpCommand(&cobra.Command{
27-
Use: "help",
27+
Use: "no-help",
2828
Hidden: true,
2929
})
3030

0 commit comments

Comments
 (0)