Skip to content

Commit

Permalink
(#25) Enhance exec error
Browse files Browse the repository at this point in the history
  • Loading branch information
mdelapenya committed Apr 16, 2020
1 parent b587960 commit 661033b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions compose.go
Original file line number Diff line number Diff line change
Expand Up @@ -160,7 +160,7 @@ func execute(

err := cmd.Start()
if err != nil {
execCmd := []string{dirContext, binary}
execCmd := []string{"Starting command", dirContext, binary}
execCmd = append(execCmd, args...)

return ExecError{
Expand All @@ -182,7 +182,7 @@ func execute(

err = cmd.Wait()

execCmd := []string{dirContext, binary}
execCmd := []string{"Reading std", dirContext, binary}
execCmd = append(execCmd, args...)

return ExecError{
Expand Down

0 comments on commit 661033b

Please sign in to comment.