From 0a1be464d1d075734a6dfa3ed0acc149a03afffa Mon Sep 17 00:00:00 2001 From: KernelDeimos Date: Mon, 2 Dec 2024 11:45:13 -0500 Subject: [PATCH] tweak: fix "all" option --- tools/comment-writer/main.js | 7 +------ 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/tools/comment-writer/main.js b/tools/comment-writer/main.js index 4bb60448..495484fc 100644 --- a/tools/comment-writer/main.js +++ b/tools/comment-writer/main.js @@ -625,13 +625,8 @@ const main = async () => { } if ( action.action === 'all' ) { - limit = await enq.prompt({ - type: 'input', - name: 'limit', - message: 'Enter limit:' - }); i = 1; - limit = Number(limit.limit); + limit = Infinity; } const { definitions } = js_processor.process(lines);