k9s: fix cross-platform builds

This commit is contained in:
Luca Bilke 2024-06-07 22:44:22 +02:00
parent a614bb9143
commit f0b65931eb
No known key found for this signature in database
GPG Key ID: B753481DA0B6FA47
1 changed files with 2 additions and 2 deletions

View File

@ -17,12 +17,12 @@ export LDFLAGS="-fuse-ld=bfd"
post_build() {
for shell in bash zsh fish; do
_build-k9s-xbps/bin/k9s completion $shell >k9s.$shell
go run main.go completion $shell >completion.$shell
done
}
post_install() {
for shell in bash zsh fish; do
vcompletion k9s.$shell $shell
vcompletion completion.$shell $shell
done
}