Skip to content

Commit

Permalink
chore: sfdx_json_to_stdout to sf_json_to_stdout
Browse files Browse the repository at this point in the history
  • Loading branch information
CristiCanizales committed Sep 3, 2023
1 parent 5afea22 commit 1449e6b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export abstract class SfdxCommandletExecutor<T>
const cancellationToken = cancellationTokenSource.token;
const execution = new CliCommandExecutor(this.build(response.data), {
cwd: this.executionCwd,
env: { SFDX_JSON_TO_STDOUT: 'true' }
env: { SF_JSON_TO_STDOUT: 'true' }
}).execute(cancellationToken);

let output = '';
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ export abstract class SfdxCommandletExecutor<T>
const cancellationToken = cancellationTokenSource.token;
const execution = new CliCommandExecutor(this.build(response.data), {
cwd: this.executionCwd,
env: { SFDX_JSON_TO_STDOUT: 'true' }
env: { SF_JSON_TO_STDOUT: 'true' }
}).execute(cancellationToken);

let output = '';
Expand Down

0 comments on commit 1449e6b

Please sign in to comment.