diff --git a/scripts/completions.sh b/scripts/completions.sh index 0992856..00f30b6 100755 --- a/scripts/completions.sh +++ b/scripts/completions.sh @@ -1,5 +1,6 @@ #!/bin/sh set -e +rm -rf completions mkdir completions for sh in bash zsh fish; do go run main.go completion "$sh" >"completions/voiceflow.$sh" diff --git a/scripts/manpages.sh b/scripts/manpages.sh index 00c348d..ec7f173 100755 --- a/scripts/manpages.sh +++ b/scripts/manpages.sh @@ -1,4 +1,5 @@ #!/bin/sh set -e +rm -rf manpages mkdir manpages go run . man | gzip -c -9 >manpages/voiceflow.1.gz \ No newline at end of file