Skip to content

Commit 9937ef0

Browse files
committed
fix: remove ref to SF_USE_PROGRESS_BAR env var
1 parent c33be18 commit 9937ef0

File tree

4 files changed

+5
-17
lines changed

4 files changed

+5
-17
lines changed

src/commands/project/deploy/resume.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
* For full license text, see LICENSE.txt file in the repo root or https://opensource.org/licenses/BSD-3-Clause
66
*/
77

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

83-
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_USE_PROGRESS_BAR);
83+
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES');
8484

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

src/commands/project/deploy/start.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -166,11 +166,7 @@ export default class DeployMetadata extends SfCommand<DeployResultJson> {
166166
ConfigVars.ORG_METADATA_REST_DEPLOY
167167
);
168168

169-
public static envVariablesSection = toHelpSection(
170-
'ENVIRONMENT VARIABLES',
171-
EnvironmentVariable.SF_TARGET_ORG,
172-
EnvironmentVariable.SF_USE_PROGRESS_BAR
173-
);
169+
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_TARGET_ORG);
174170

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

src/commands/project/deploy/validate.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -147,11 +147,7 @@ export default class DeployMetadataValidate extends SfCommand<DeployResultJson>
147147
ConfigVars.ORG_METADATA_REST_DEPLOY
148148
);
149149

150-
public static envVariablesSection = toHelpSection(
151-
'ENVIRONMENT VARIABLES',
152-
EnvironmentVariable.SF_TARGET_ORG,
153-
EnvironmentVariable.SF_USE_PROGRESS_BAR
154-
);
150+
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_TARGET_ORG);
155151

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

src/commands/project/retrieve/start.ts

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -141,11 +141,7 @@ export default class RetrieveMetadata extends SfCommand<RetrieveResultJson> {
141141
OrgConfigProperties.TARGET_ORG,
142142
OrgConfigProperties.ORG_API_VERSION
143143
);
144-
public static envVariablesSection = toHelpSection(
145-
'ENVIRONMENT VARIABLES',
146-
EnvironmentVariable.SF_TARGET_ORG,
147-
EnvironmentVariable.SF_USE_PROGRESS_BAR
148-
);
144+
public static envVariablesSection = toHelpSection('ENVIRONMENT VARIABLES', EnvironmentVariable.SF_TARGET_ORG);
149145

150146
protected retrieveResult!: RetrieveResult;
151147
protected ms:

0 commit comments

Comments
 (0)