Skip to content

Commit

Permalink
Use a tab so spacing is usually consistent
Browse files Browse the repository at this point in the history
  • Loading branch information
ejholmes committed Jan 15, 2017
1 parent 933064f commit b119233
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plan.go
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ func (t *target) Dependencies(ctx context.Context) ([]string, error) {
func (t *target) ruleCommand(ctx context.Context, phase string) *exec.Cmd {
name := filepath.Base(t.path)
cmd := exec.CommandContext(ctx, t.rulefile, phase, name)
pre := ansi("36", fmt.Sprintf("%s ", t.name))
pre := ansi("36", fmt.Sprintf("%s\t", t.name))
cmd.Stdout = prefix(t.stdout, pre)
cmd.Stderr = prefix(t.stderr, pre)
cmd.Dir = t.dir
Expand Down

0 comments on commit b119233

Please sign in to comment.