Skip to content

Commit

Permalink
v0.3.24: change code in file index
Browse files Browse the repository at this point in the history
  • Loading branch information
zevanoo committed May 4, 2024
1 parent 2c63d72 commit 1f44776
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ function start() {
})
.on('exit', code => {
console.error('Exited with code:', code)
if (code == "." || code == 1 || code == 0) start()
if (code == 1) return
if (code == "." || code == 0) start()
})
}
start()

0 comments on commit 1f44776

Please sign in to comment.