mirror of
https://github.com/nginxinc/nginx-prometheus-exporter.git
synced 2025-04-19 23:42:14 +03:00
8 lines
171 B
Bash
Executable File
8 lines
171 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
rm -rf completions
|
|
mkdir completions
|
|
for shell in bash zsh; do
|
|
go run . --completion-script-$shell >completions/nginx-prometheus-exporter.$shell
|
|
done
|