@@ -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