Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 6bbebd4

Browse files
committed
fixup! Cleanup
1 parent 6cab245 commit 6bbebd4

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

internal/cmd/secrets.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ coder secrets create aws-credentials --from-file ./credentials.json`,
8282
name = args[0]
8383
value string
8484
err error
85-
ctx = cmd.Context()
85+
ctx = cmd.Context()
8686
)
8787
client, err := newClient(ctx)
8888
if err != nil {
@@ -175,7 +175,7 @@ func viewSecretCmd(userEmail *string) func(cmd *cobra.Command, args []string) er
175175
return func(cmd *cobra.Command, args []string) error {
176176
var (
177177
name = args[0]
178-
ctx = cmd.Context()
178+
ctx = cmd.Context()
179179
)
180180
client, err := newClient(ctx)
181181
if err != nil {

internal/cmd/urls.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -136,7 +136,7 @@ func createDevURLCmd() *cobra.Command {
136136
var (
137137
envName = args[0]
138138
port = args[1]
139-
ctx = cmd.Context()
139+
ctx = cmd.Context()
140140
)
141141

142142
portNum, err := validatePort(port)
@@ -214,7 +214,7 @@ func removeDevURL(cmd *cobra.Command, args []string) error {
214214
var (
215215
envName = args[0]
216216
port = args[1]
217-
ctx = cmd.Context()
217+
ctx = cmd.Context()
218218
)
219219

220220
portNum, err := validatePort(port)

0 commit comments

Comments
 (0)