mirror of
https://github.com/awatertrevi/infisical.git
synced 2026-09-22 13:39:35 +00:00
8 lines
153 B
Bash
Executable File
8 lines
153 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
rm -rf completions
|
|
mkdir completions
|
|
cd cli
|
|
for sh in bash zsh fish; do
|
|
go run . completion "$sh" > "../completions/infisical.$sh"
|
|
done |