Skip to content
This repository has been archived by the owner on Sep 10, 2020. It is now read-only.

Commit

Permalink
add warning if got empty data when enriching libs
Browse files Browse the repository at this point in the history
  • Loading branch information
PeterDaveHello committed May 30, 2015
1 parent 0396452 commit 242c632
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions reindex.js
Expand Up @@ -99,6 +99,9 @@ function crawl(gnext) {
if (!err) {
// enchrich the library
console.log('** Enrich ' + repo.user + '/' + repo.repo);
if (res.stargazers_count == undefined) {
console.log('Got a problem on ' + repo.user + '/' + repo.repo + ' !!!');
}
library.github = {
user: repo.user,
repo: repo.repo,
Expand Down

0 comments on commit 242c632

Please sign in to comment.