Skip to content

Commit

Permalink
⬆️ Update module gopkg.in/alessio/shellescape.v1 to v1.4.1 (#49)
Browse files Browse the repository at this point in the history
* ⬆️ Update module gopkg.in/alessio/shellescape.v1 to v1.4.1

* 🔧 Update shellescape import path from gopkg.in to github.com to fix update issues

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Gabe Cook <[email protected]>
  • Loading branch information
renovate[bot] and gabe565 authored Jan 7, 2023
1 parent 5a25e7d commit c66c821
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ go 1.19

require (
github.com/AlecAivazis/survey/v2 v2.3.6
github.com/alessio/shellescape v1.4.1
github.com/jedib0t/go-pretty/v6 v6.4.3
github.com/klauspost/pgzip v1.2.5
github.com/mattn/go-isatty v0.0.17
Expand All @@ -12,7 +13,6 @@ require (
github.com/spf13/cobra v1.6.1
github.com/spf13/viper v1.14.0
golang.org/x/sync v0.1.0
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61
k8s.io/api v0.26.0
k8s.io/apimachinery v0.26.0
k8s.io/client-go v0.26.0
Expand All @@ -21,7 +21,6 @@ require (

require (
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect
github.com/alessio/shellescape v1.4.1 // indirect
github.com/cpuguy83/go-md2man/v2 v2.0.2 // indirect
github.com/davecgh/go-spew v1.1.1 // indirect
github.com/emicklei/go-restful/v3 v3.9.0 // indirect
Expand Down
2 changes: 0 additions & 2 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -633,8 +633,6 @@ google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQ
google.golang.org/protobuf v1.27.1/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=
google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61 h1:8ajkpB4hXVftY5ko905id+dOnmorcS2CHNxxHLLDcFM=
gopkg.in/alessio/shellescape.v1 v1.0.0-20170105083845-52074bc9df61/go.mod h1:IfMagxm39Ys4ybJrDb7W3Ob8RwxftP0Yy+or/NVz1O8=
gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
Expand Down
2 changes: 1 addition & 1 deletion internal/command/builder.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ package command

import (
"fmt"
"gopkg.in/alessio/shellescape.v1"
"github.com/alessio/shellescape"
"strings"
)

Expand Down
2 changes: 1 addition & 1 deletion internal/command/env.go
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
package command

import "gopkg.in/alessio/shellescape.v1"
import "github.com/alessio/shellescape"

func NewEnv(k, v string) Env {
return Env{
Expand Down

0 comments on commit c66c821

Please sign in to comment.