mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-10 07:58:15 -05: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 |