We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8b20ad0 commit 9ff0cabCopy full SHA for 9ff0cab
scripts/authors.ts
@@ -109,8 +109,8 @@ namespace Commands {
109
};
110
listKnownAuthors.description = "List known authors as listed in .mailmap file.";
111
112
- export const listAuthors: Command = function (spec = "") {
113
- const cmd = "git shortlog -se " + spec;
+ export const listAuthors: Command = function (...specs:string[]) {
+ const cmd = "git shortlog -se " + specs.join(" ");
114
console.log(cmd);
115
const outputRegExp = /\d+\s+([^<]+)<([^>]+)>/;
116
const tty = process.platform === 'win32' ? 'CON' : '/dev/tty';
0 commit comments