diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 6161f96..d9690fe 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -88,12 +88,12 @@ brews: description: UDP Data Dumper for Formula 1 game license: Apache test: | - system "#{bin}/f1dump version" + system "#{bin}/f1 version" dependencies: - name: go type: optional install: |- - bin.install "f1dump" - bash_completion.install "completions/f1dump.bash" => "f1dump" - zsh_completion.install "completions/f1dump.zsh" => "_f1dump" - fish_completion.install "completions/f1dump.fish" \ No newline at end of file + bin.install "f1" + bash_completion.install "completions/f1.bash" => "f1" + zsh_completion.install "completions/f1.zsh" => "_f1" + fish_completion.install "completions/f1.fish" \ No newline at end of file diff --git a/scripts/completions.sh b/scripts/completions.sh index 5b18099..ebc1356 100644 --- a/scripts/completions.sh +++ b/scripts/completions.sh @@ -3,5 +3,5 @@ set -e rm -rf completions mkdir completions for sh in bash zsh fish; do - go run main.go completion "$sh" >"completions/f1dump.$sh" + go run main.go completion "$sh" >"completions/f1.$sh" done