Skip to content

Commit

Permalink
fix issue #78: little fixes for stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilsk committed Nov 30, 2017
1 parent ddd40aa commit e14571f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/retry/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ cmd-install:
.PHONY: cmd-test-1-local
cmd-test-1-local: cmd-install
cmd-test-1-local:
'${GOPATH}'/bin/retry -limit=3 -backoff=lin:10ms -- /bin/sh -c "echo 'trying...'; exit 1"
'${GOPATH}'/bin/retry -limit=3 -backoff=lin:500ms -- /bin/sh -c "echo 'trying...'; exit 1"

.PHONY: cmd-test-2-local
cmd-test-2-local: cmd-install
Expand Down
4 changes: 3 additions & 1 deletion cmd/retry/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,9 @@ const (
)

// DefaultReport is a default template for report.
var DefaultReport = `---
var DefaultReport = `
---
command: {{ .Name }}
error: {{ .Error }}
Expand Down

0 comments on commit e14571f

Please sign in to comment.