diff --git a/.github/workflows/e2e-matrix.yml b/.github/workflows/e2e-matrix.yml index 6ee424b6bb..5b44246388 100644 --- a/.github/workflows/e2e-matrix.yml +++ b/.github/workflows/e2e-matrix.yml @@ -159,7 +159,7 @@ jobs: SELECTED_PM: ${{ matrix.package_manager }} npm_config_registry: http://localhost:4872 YARN_REGISTRY: http://localhost:4872 - VERBOSE_OUTPUT: ${{ 'true' }} + NX_VERBOSE_LOGGING: ${{ 'true' }} NX_E2E_SKIP_BUILD_CLEANUP: ${{ 'true' }} NX_CACHE_DIRECTORY: ${{ matrix.os-cache-dir }} diff --git a/e2e/utils/index.ts b/e2e/utils/index.ts index aaca9e8209..14b57b0a02 100644 --- a/e2e/utils/index.ts +++ b/e2e/utils/index.ts @@ -438,7 +438,7 @@ export function runCLI( maxBuffer: 50 * 1024 * 1024, }) ); - if (process.env.VERBOSE_OUTPUT) { + if (process.env.NX_VERBOSE_LOGGING) { logInfo(`result of running: ${command}`, r); } @@ -490,7 +490,7 @@ export function runCommand(command: string): string { }, encoding: 'utf-8', }).toString(); - if (process.env.VERBOSE_OUTPUT) { + if (process.env.NX_VERBOSE_LOGGING) { console.log(r); } return r;