Skip to content

Commit

Permalink
fix(deps): update module github.com/hashicorp/vault to v1.14.0 [secur…
Browse files Browse the repository at this point in the history
…ity] (SAP#4427)

* fix(deps): update module github.com/hashicorp/vault to v1.13.5 [security]

* fix(deps): update module github.com/Azure/azure-sdk-for-go/tree/sdk/storage/azblob to v0.4.1

* fix(deps): update module github.com/hashicorp/vault/sdk to v0.9.2
fix(deps): update module oras.land/oras-go to v1.2.3

* fix(deps): update module github.com/hashicorp/vault/sdk to v0.9.2-0.20230530190758-08ee474850e0
fix(deps): update module github.com/hashicorp/vault/sdk to v0.9.2-0.20230530190758-08ee474850e0

* replacing deprecated function

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Muhammadali Nazarov <[email protected]>
Co-authored-by: Jordi van Liempt <[email protected]>
  • Loading branch information
3 people authored and maxatsap committed Jul 23, 2024
1 parent 0cc126d commit c998ad5
Show file tree
Hide file tree
Showing 3 changed files with 680 additions and 1,050 deletions.
5 changes: 3 additions & 2 deletions cmd/completions.go
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
package cmd

import (
"github.com/spf13/cobra"
"os"

"github.com/spf13/cobra"
)

// CommandLineCompletionCommand allows to generate convenience scripts for using the piper cli in a shell.
Expand Down Expand Up @@ -44,7 +45,7 @@ $ piper completion fish > ~/.config/fish/completions/piper.fish
`,
DisableFlagsInUseLine: true,
ValidArgs: []string{"bash", "zsh", "fish", "powershell"},
Args: cobra.ExactValidArgs(1),
Args: cobra.MatchAll(cobra.ExactArgs(1), cobra.OnlyValidArgs),
Run: func(cmd *cobra.Command, args []string) {
switch args[0] {
case "bash":
Expand Down
Loading

0 comments on commit c998ad5

Please sign in to comment.