Skip to content

Commit

Permalink
fix: 咋这个没了
Browse files Browse the repository at this point in the history
  • Loading branch information
AnnAngela authored Oct 29, 2024
1 parent 5ea7435 commit 8b5b323
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/generateCommitsHistory/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ for (const { hash, _date, authorName, _authorEmail, _signatureKey, committerName
debugConsole.log("\tNothing in src/ has been changed, skip.");
continue;
}
const isFromGithubWebInterface = signatureKey === .signatureKey && committerName === githubWebInterfaceFlowSignature.committerName && committerEmail === githubWebInterfaceFlowSignature.committerEmail;
const isFromGithubWebInterface = signatureKey === githubWebInterfaceFlowSignature.signatureKey && committerName === githubWebInterfaceFlowSignature.committerName && committerEmail === githubWebInterfaceFlowSignature.committerEmail;
debugConsole.log("\tisFromGithubWebInterface:", isFromGithubWebInterface);
const name = isFromGithubWebInterface ? authorName : committerName;
const email = (isFromGithubWebInterface ? authorEmail : committerEmail).toLowerCase();
Expand Down

0 comments on commit 8b5b323

Please sign in to comment.