@@ -33,7 +33,6 @@ import (
3333 "github.com/arduino/arduino-cli/arduino/libraries"
3434 "github.com/arduino/arduino-cli/arduino/libraries/librariesmanager"
3535 "github.com/arduino/arduino-cli/arduino/sketch"
36- "github.com/arduino/arduino-cli/executils"
3736 rpc "github.com/arduino/arduino-cli/rpc/cc/arduino/cli/commands/v1"
3837 "github.com/arduino/go-paths-helper"
3938 "github.com/arduino/go-properties-orderedmap"
@@ -492,7 +491,7 @@ func (b *Builder) build() error {
492491 return nil
493492}
494493
495- func (b * Builder ) prepareCommandForRecipe (buildProperties * properties.Map , recipe string , removeUnsetProperties bool ) (* executils .Process , error ) {
494+ func (b * Builder ) prepareCommandForRecipe (buildProperties * properties.Map , recipe string , removeUnsetProperties bool ) (* paths .Process , error ) {
496495 pattern := buildProperties .Get (recipe )
497496 if pattern == "" {
498497 return nil , fmt .Errorf (tr ("%[1]s pattern is missing" ), recipe )
@@ -525,7 +524,7 @@ func (b *Builder) prepareCommandForRecipe(buildProperties *properties.Map, recip
525524 }
526525 }
527526
528- command , err := executils .NewProcess (nil , parts ... )
527+ command , err := paths .NewProcess (nil , parts ... )
529528 if err != nil {
530529 return nil , err
531530 }
@@ -536,7 +535,7 @@ func (b *Builder) prepareCommandForRecipe(buildProperties *properties.Map, recip
536535 return command , nil
537536}
538537
539- func (b * Builder ) execCommand (command * executils .Process ) error {
538+ func (b * Builder ) execCommand (command * paths .Process ) error {
540539 if b .logger .Verbose () {
541540 b .logger .Info (utils .PrintableCommand (command .GetArgs ()))
542541 command .RedirectStdoutTo (b .logger .Stdout ())
0 commit comments