Package Details: werf-bin 2.0.3-1

Git Clone URL: https://aur.archlinux.org/werf-bin.git (read-only, click to copy)
Package Base: werf-bin
Description: Kubernetes build and delivery tool
Upstream URL: https://werf.io
Keywords: ci-cd continuous-delivery continuous-integration dapp devops docker docker-image dockerfile gitops go golang iac kubernetes werf
Licenses: Apache
Conflicts: werf-git
Provides: werf
Submitter: ragouel
Maintainer: rgeraskin
Last Packager: rgeraskin
Votes: 1
Popularity: 0.000606
First Submitted: 2020-03-15 22:32 (UTC)
Last Updated: 2024-04-25 21:08 (UTC)

Latest Comments

DCNick3 commented on 2023-01-30 18:40 (UTC)

shell completion can be added with this code:

  chmod 755 werf

  mkdir -p "$pkgdir/usr/share/bash-completion/completions"
  mkdir -p "$pkgdir/usr/share/fish/vendor_completions.d"
  mkdir -p "$pkgdir/usr/share/zsh/site-functions"

  ./werf completion --shell=bash > "$pkgdir/usr/share/bash-completion/completions/werf"
  ./werf completion --shell=fish > "$pkgdir/usr/share/fish/vendor_completions.d/werf.fish"
  ./werf completion --shell=zsh  > "$pkgdir/usr/share/zsh/site-functions/_werf"