Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/getOptions.js
Original file line number Diff line number Diff line change
Expand Up @@ -147,8 +147,9 @@ var getBaseOptions = function(cb){
}
}
} catch(ex){
logger.warn("Repo token could not be determined. Continuing without it." +
"This is necessary for private repos only, so may not be an issue at all.");
const msg = "Repo token (COVERALLS_REPO_TOKEN) not found, continuing without it. If an error occurs try setting it."
logger.warn(msg);
(!process.env.COVERALLS_QUIETE || process.env.COVERALLS_QUIETE === '0') && console.warn('WARNING: ' + msg);
}
}

Expand Down