Skip to content

Commit 7bd268a

Browse files
fix: use reveal flag option in list environment variables (#429)
1 parent 2221499 commit 7bd268a

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

cmd/list.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -420,7 +420,7 @@ var listVariablesCmd = &cobra.Command{
420420
Project: cmdProjectName,
421421
Environment: cmdProjectEnvironment,
422422
}
423-
envvars, err := lagoon.GetEnvVariablesByProjectEnvironmentName(context.TODO(), in, lc)
423+
envvars, err := lagoon.GetEnvVariablesByProjectEnvironmentName(context.TODO(), in, reveal, lc)
424424
if err != nil {
425425
return err
426426
}

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ require (
1919
github.com/spf13/cobra v1.8.1
2020
github.com/spf13/pflag v1.0.6
2121
github.com/stretchr/testify v1.10.0
22-
github.com/uselagoon/machinery v0.0.31
22+
github.com/uselagoon/machinery v0.0.32
2323
go.uber.org/mock v0.5.0
2424
golang.org/x/crypto v0.32.0
2525
golang.org/x/term v0.28.0

go.sum

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -78,8 +78,8 @@ github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o=
7878
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
7979
github.com/stretchr/testify v1.10.0 h1:Xv5erBjTwe/5IxqUQTdXv5kgmIvbHo3QQyRwhJsOfJA=
8080
github.com/stretchr/testify v1.10.0/go.mod h1:r2ic/lqez/lEtzL7wO/rwa5dbSLXVDPFyf8C91i36aY=
81-
github.com/uselagoon/machinery v0.0.31 h1:SkJ+muPBb9Q5vNI0bgXxZai6jN103iSj3e3d3DcZlc4=
82-
github.com/uselagoon/machinery v0.0.31/go.mod h1:RsHzIMOam3hiA4CKR12yANgzdTGy6tz4D19umjMzZyw=
81+
github.com/uselagoon/machinery v0.0.32 h1:qkTQcTSAycfflBde2SKQf46tFtlpLuQ+C18XsX7SbNw=
82+
github.com/uselagoon/machinery v0.0.32/go.mod h1:G0ujppuNR0BrtAnlmH8xDb9TDfayb4A36aeo0DYg7fQ=
8383
go.uber.org/mock v0.5.0 h1:KAMbZvZPyBPWgD14IrIQ38QCyjwpvVVV6K/bHl1IwQU=
8484
go.uber.org/mock v0.5.0/go.mod h1:ge71pBPLYDk7QIi1LupWxdAykm7KIEFchiOqd6z7qMM=
8585
golang.org/x/crypto v0.32.0 h1:euUpcYgM8WcP71gNpTqQCn6rC2t6ULUPiOzfWaXVVfc=

0 commit comments

Comments
 (0)