Skip to content

Commit

Permalink
fix: remove ref to SF_USE_PROGRESS_BAR env var
Browse files Browse the repository at this point in the history
  • Loading branch information
cristiand391 committed Nov 20, 2024
1 parent c33be18 commit 9937ef0
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 17 deletions.
4 changes: 2 additions & 2 deletions src/commands/project/deploy/resume.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
*/

import { EnvironmentVariable, Messages, Org, SfError } from '@salesforce/core';
import { Messages, Org, SfError } from '@salesforce/core';
import { SfCommand, toHelpSection, Flags } from '@salesforce/sf-plugins-core';
import { DeployResult, MetadataApiDeploy } from '@salesforce/source-deploy-retrieve';
import { Duration } from '@salesforce/kit';
Expand Down Expand Up @@ -80,7 +80,7 @@ export default class DeployMetadataResume extends SfCommand<DeployResultJson> {
}),
};

public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_USE_PROGRESS_BAR);
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES');

public static errorCodes = toHelpSection('ERROR CODES', DEPLOY_STATUS_CODES_DESCRIPTIONS);

Expand Down
6 changes: 1 addition & 5 deletions src/commands/project/deploy/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -166,11 +166,7 @@ export default class DeployMetadata extends SfCommand<DeployResultJson> {
ConfigVars.ORG_METADATA_REST_DEPLOY
);

public static envVariablesSection = toHelpSection(
'ENVIRONMENT VARIABLES',
EnvironmentVariable.SF_TARGET_ORG,
EnvironmentVariable.SF_USE_PROGRESS_BAR
);
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_TARGET_ORG);

public static errorCodes = toHelpSection('ERROR CODES', DEPLOY_STATUS_CODES_DESCRIPTIONS);

Expand Down
6 changes: 1 addition & 5 deletions src/commands/project/deploy/validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -147,11 +147,7 @@ export default class DeployMetadataValidate extends SfCommand<DeployResultJson>
ConfigVars.ORG_METADATA_REST_DEPLOY
);

public static envVariablesSection = toHelpSection(
'ENVIRONMENT VARIABLES',
EnvironmentVariable.SF_TARGET_ORG,
EnvironmentVariable.SF_USE_PROGRESS_BAR
);
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_TARGET_ORG);

public static errorCodes = toHelpSection('ERROR CODES', DEPLOY_STATUS_CODES_DESCRIPTIONS);

Expand Down
6 changes: 1 addition & 5 deletions src/commands/project/retrieve/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -141,11 +141,7 @@ export default class RetrieveMetadata extends SfCommand<RetrieveResultJson> {
OrgConfigProperties.TARGET_ORG,
OrgConfigProperties.ORG_API_VERSION
);
public static envVariablesSection = toHelpSection(
'ENVIRONMENT VARIABLES',
EnvironmentVariable.SF_TARGET_ORG,
EnvironmentVariable.SF_USE_PROGRESS_BAR
);
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_TARGET_ORG);

protected retrieveResult!: RetrieveResult;
protected ms:
Expand Down

0 comments on commit 9937ef0

Please sign in to comment.