Skip to content

Commit f65ffa7

Browse files
committed
lint
1 parent 67c13fe commit f65ffa7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

internal/provider/action_local_command.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ func (a *localCommandAction) Invoke(ctx context.Context, req action.InvokeReques
8585
return
8686
}
8787

88-
// Prep the commmand
88+
// Prep the command
8989
command := config.Command.ValueString()
9090
resp.Diagnostics.Append(findCommand(command))
9191
if resp.Diagnostics.HasError() {
@@ -128,7 +128,7 @@ func (a *localCommandAction) Invoke(ctx context.Context, req action.InvokeReques
128128
"Command Execution Failed",
129129
"The action received an unexpected error while attempting to execute the command."+
130130
"\n\n"+
131-
fmt.Sprintf("Commmand: %s\n", cmd.String())+
131+
fmt.Sprintf("Command: %s\n", cmd.String())+
132132
fmt.Sprintf("Command Error: %s\n", stderrStr)+
133133
fmt.Sprintf("State: %s", err),
134134
)
@@ -184,7 +184,7 @@ func genericCommandDiag(cmd *exec.Cmd, err error) diag.Diagnostic {
184184
"Command Execution Failed",
185185
"The action received an unexpected error while attempting to execute the command."+
186186
"\n\n"+
187-
fmt.Sprintf("Commmand: %s\n", cmd.Path)+
187+
fmt.Sprintf("Command: %s\n", cmd.Path)+
188188
fmt.Sprintf("Error: %s", err),
189189
)
190190
}

0 commit comments

Comments
 (0)