mirror of
https://github.com/neilotoole/sq.git
synced 2024-11-28 12:33:44 +03:00
10 lines
217 B
Bash
10 lines
217 B
Bash
|
#!/bin/sh
|
||
|
# ".completions.sh regenerates completions to "./completions".
|
||
|
|
||
|
set -e
|
||
|
rm -rf completions
|
||
|
mkdir completions
|
||
|
for sh in bash zsh fish powershell; do
|
||
|
go run main.go completion "$sh" >"completions/sq.$sh"
|
||
|
done
|