Skip to content

Commit 33c7c04

Browse files
committed
fix
1 parent d86105d commit 33c7c04

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

lib/index.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ function reRunnerBuilder(runOptions) {
4646
.map((file) => getFormedRunCommand(file)))
4747
.filter(function(cmd) {return cmd.includes(grepWord)})
4848

49-
if(defaultStatus) {
49+
if(debugProcess) {
5050
console.log(`Attempts count is: ${attemptsCount}`)
5151
}
5252

@@ -56,14 +56,14 @@ function reRunnerBuilder(runOptions) {
5656
// execute run
5757
.reduce((resolver, /*current*/ current, index) => {
5858

59-
if(defaultStatus) {
59+
if(debugProcess) {
6060
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>')
6161
console.log(`Execution number: ${index}`)
6262
console.log('>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>')
6363
}
6464

6565
return resolver.then((resolvedCommandsArray) => {
66-
if(defaultStatus) {
66+
if(debugProcess) {
6767
console.log('=========================================================================')
6868
console.log(`Processes count: ${resolvedCommandsArray.length}`)
6969
console.log('=========================================================================')

0 commit comments

Comments
 (0)