From 4e69b715012dbb5f29275616ee527cab2264dad2 Mon Sep 17 00:00:00 2001 From: Andrew Erickson Date: Wed, 16 Oct 2024 14:00:10 -0600 Subject: [PATCH] turn on exec debug --- package.json | 2 +- src/exec.ts | 3 +-- 2 files changed, 2 insertions(+), 3 deletions(-) diff --git a/package.json b/package.json index 9f84e5a..350d39f 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "1password-action", - "version": "3.0.2", + "version": "3.0.3", "private": true, "description": "Import items from 1Password securely", "main": "lib/main.js", diff --git a/src/exec.ts b/src/exec.ts index e86d74c..be917d6 100644 --- a/src/exec.ts +++ b/src/exec.ts @@ -8,9 +8,8 @@ export async function execWithOutput( let out = '' let err = '' - const isDebug = process.env.ACTIONS_STEP_DEBUG === 'true' const opt = options ?? {} - opt.silent = !isDebug + opt.silent = false opt.listeners = { stdout: (data: Buffer) => { out += data.toString()