Skip to content

Commit

Permalink
remove log entry if already passed
Browse files Browse the repository at this point in the history
  • Loading branch information
beliaev-maksim authored and seb128 committed Apr 12, 2024
1 parent 71e66c6 commit 2ba7b09
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -132,9 +132,9 @@ async function run() {
console.log();

// Check Launchpad
console.log('Checking the following users on Launchpad:');
for (const i in commit_authors) {
if (commit_authors[i]['signed'] == false) {
console.log('Checking the following user on Launchpad:');
const email = commit_authors[i]['email'];

await exec.exec('python3', [path.join(__dirname, 'lp_cla_check.py'), email], options = {
Expand Down

0 comments on commit 2ba7b09

Please sign in to comment.