Skip to content

Commit 2b94480

Browse files
committed
fix: use resolved executable when applying a formatter
We were going to the trouble of resolving the command to an executable via the PATH but were not using that executable when executing the formatting command. Signed-off-by: Brian McGee <[email protected]>
1 parent ff3bfaa commit 2b94480

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

format/formatter.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ func (f *Formatter) Apply(ctx context.Context, files []*walk.File, filter bool)
8080
}
8181

8282
// execute the command
83-
cmd := exec.CommandContext(ctx, f.config.Command, args...)
83+
cmd := exec.CommandContext(ctx, f.executable, args...)
8484
cmd.Dir = f.workingDir
8585

8686
if out, err := cmd.CombinedOutput(); err != nil {

0 commit comments

Comments
 (0)