Skip to content

Commit

Permalink
Merge pull request #373 from donny-dont/docker-card-windows
Browse files Browse the repository at this point in the history
Use full path to docker when creating card
  • Loading branch information
TP Honey authored Sep 15, 2022
2 parents a842dfe + eb53fd1 commit d0e7d7f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion card.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
)

func (p Plugin) writeCard() error {
cmd := exec.Command("docker", "inspect", p.Build.Name)
cmd := exec.Command(dockerExe, "inspect", p.Build.Name)
data, err := cmd.CombinedOutput()
if err != nil {
return err
Expand Down

0 comments on commit d0e7d7f

Please sign in to comment.