Skip to content

Commit 4e69b71

Browse files
committed
turn on exec debug
1 parent 1cac74f commit 4e69b71

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

Diff for: package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "1password-action",
3-
"version": "3.0.2",
3+
"version": "3.0.3",
44
"private": true,
55
"description": "Import items from 1Password securely",
66
"main": "lib/main.js",

Diff for: src/exec.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,8 @@ export async function execWithOutput(
88
let out = ''
99
let err = ''
1010

11-
const isDebug = process.env.ACTIONS_STEP_DEBUG === 'true'
1211
const opt = options ?? {}
13-
opt.silent = !isDebug
12+
opt.silent = false
1413
opt.listeners = {
1514
stdout: (data: Buffer) => {
1615
out += data.toString()

0 commit comments

Comments
 (0)