From 8dafc50d2ca2227e85c9ab137607d1cd4ebb2807 Mon Sep 17 00:00:00 2001 From: Edward McFarlane Date: Fri, 1 Nov 2024 12:08:29 -0400 Subject: [PATCH] Fix --- dist/index.js | 3 --- src/main.ts | 3 --- 2 files changed, 6 deletions(-) diff --git a/dist/index.js b/dist/index.js index dc768d8..2f48abb 100644 --- a/dist/index.js +++ b/dist/index.js @@ -45881,9 +45881,6 @@ async function lint(bufPath, inputs) { return skip(); } const args = ["lint", "--error-format", "github-actions"]; - if (core.isDebug()) { - args.push("--debug"); - } if (inputs.input) { args.push(inputs.input); } diff --git a/src/main.ts b/src/main.ts index b7bd1b0..bcd93c3 100644 --- a/src/main.ts +++ b/src/main.ts @@ -214,9 +214,6 @@ async function lint(bufPath: string, inputs: Inputs): Promise { return skip(); } const args = ["lint", "--error-format", "github-actions"]; - if (core.isDebug()) { - args.push("--debug"); - } if (inputs.input) { args.push(inputs.input); }