mirror of
https://github.com/apricote/hcloud-upload-image.git
synced 2026-01-13 13:21:01 +00:00
7 lines
153 B
Bash
Executable file
7 lines
153 B
Bash
Executable file
#!/bin/sh
|
|
set -e
|
|
rm -rf completions
|
|
mkdir completions
|
|
for sh in bash zsh fish; do
|
|
go run . completion "$sh" >"completions/hcloud-upload-image.$sh"
|
|
done
|