Skip to content

Commit

Permalink
turn on exec debug
Browse files Browse the repository at this point in the history
  • Loading branch information
aerickson14 committed Oct 16, 2024
1 parent 1cac74f commit 4e69b71
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -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",
Expand Down
3 changes: 1 addition & 2 deletions src/exec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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()
Expand Down

0 comments on commit 4e69b71

Please sign in to comment.