fix(euler): Fixed broken build
This commit is contained in:
@@ -215,10 +215,12 @@ Observable.from(getChallenges())
|
||||
.toArray()
|
||||
.subscribe(
|
||||
(noSolutions) => {
|
||||
console.log(
|
||||
'# These challenges have no solutions\n- [ ] ' +
|
||||
noSolutions.join('\n- [ ] ')
|
||||
);
|
||||
if(noSolutions){
|
||||
console.log(
|
||||
'# These challenges have no solutions\n- [ ] ' +
|
||||
noSolutions.join('\n- [ ] ')
|
||||
);
|
||||
}
|
||||
},
|
||||
err => { throw err; },
|
||||
() => process.exit(0)
|
||||
|
Reference in New Issue
Block a user