Skip to content

Commit

Permalink
Merge pull request #963 from Soyn/fix/remove_duplicated_debug_info
Browse files Browse the repository at this point in the history
Remove duplicated debug info
  • Loading branch information
orta committed Dec 1, 2019
2 parents 6ae125d + 270f715 commit 377d18f
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions source/commands/utils/runDangerSubprocess.ts
Original file line number Diff line number Diff line change
Expand Up @@ -51,13 +51,12 @@ export const runDangerSubprocess = (
d(`Started passing in STDIN via the URL: ${url}`)
child.stdin.write(url)
child.stdin.end()
d(`Passed DSL in via STDIN`)
} else {
d(`Started passing in STDIN`)
child.stdin.write(dslJSONString)
child.stdin.end()
d(`Passed DSL in via STDIN`)
}
d(`Passed DSL in via STDIN`)
}

// Initial sending of the DSL
Expand Down

0 comments on commit 377d18f

Please sign in to comment.