Skip to content

Commit

Permalink
Merge pull request #263 from lachlancooper/fix-diff-context
Browse files Browse the repository at this point in the history
Fix bug with diff-context flag
  • Loading branch information
Sami Alajrami authored Jun 30, 2019
2 parents 59fc4ea + d9f9b70 commit 0332ff2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion decision_maker.go
Original file line number Diff line number Diff line change
Expand Up @@ -255,7 +255,7 @@ func diffRelease(r *release) string {
colorFlag = "--no-color "
}
if diffContext != -1 {
diffContextFlag = "--context " + strconv.Itoa(diffContext)
diffContextFlag = "--context " + strconv.Itoa(diffContext) + " "
}
if suppressDiffSecrets {
suppressDiffSecretsFlag = "--suppress-secrets "
Expand Down

0 comments on commit 0332ff2

Please sign in to comment.