We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd8ea33 commit 9706dbaCopy full SHA for 9706dba
src/scanner.ts
@@ -61,7 +61,12 @@ export async function executeScan(scanFlags: ComposeFlags): Promise<ScanExecutio
61
62
63
const scanOptions: exec.ExecOptions = {
64
- env: envvars,
+ env: {
65
+ ...Object.fromEntries(
66
+ Object.entries(process.env).map(([key, value]) => [key, value ?? ""])
67
+ ),
68
+ ...envvars,
69
+ },
70
silent: true,
71
ignoreReturnCode: true,
72
listeners: {
0 commit comments