mirror of
https://github.com/goreleaser/goreleaser.git
synced 2025-02-07 13:31:37 +02:00
8 lines
150 B
Bash
Executable File
8 lines
150 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
rm -rf completions
|
|
mkdir completions
|
|
for sh in bash zsh fish; do
|
|
go run main.go completion "$sh" >"completions/goreleaser.$sh"
|
|
done
|