Skip to content

Commit

Permalink
fixup! build,tools: automate enforcement of emeritus criteria
Browse files Browse the repository at this point in the history
  • Loading branch information
Trott committed Dec 15, 2021
1 parent 8c7f526 commit 63419c6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/find-inactive-collaborators.mjs
Expand Up @@ -8,7 +8,7 @@ import cp from 'node:child_process';
import fs from 'node:fs';
import readline from 'node:readline';

const SINCE = +process.argv[2] || '18 months ago';
const SINCE = process.argv[2] || '18 months ago';

async function runGitCommand(cmd, mapFn) {
const childProcess = cp.spawn('/bin/sh', ['-c', cmd], {
Expand Down

0 comments on commit 63419c6

Please sign in to comment.