Skip to content

Commit

Permalink
style: remove extra space
Browse files Browse the repository at this point in the history
  • Loading branch information
mshanemc committed Mar 19, 2024
1 parent 3169e1a commit 54618a4
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/commands/project/retrieve/start.ts
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@

import { rm } from 'node:fs/promises';
import { dirname, join, resolve } from 'node:path';

import * as fs from 'node:fs';

import { EnvironmentVariable, Lifecycle, Messages, OrgConfigProperties, SfError, SfProject } from '@salesforce/core';
Expand Down Expand Up @@ -163,7 +162,7 @@ export default class RetrieveMetadata extends SfCommand<RetrieveResultJson> {
throw messages.createError('retrieveTargetDirOverlapsPackage', [flags['output-dir']]);
}
}
const format: Format = flags['target-metadata-dir'] ? 'metadata' : 'source';
const format = flags['target-metadata-dir'] ? 'metadata' : 'source';
const zipFileName = flags['zip-file-name'] ?? DEFAULT_ZIP_FILE_NAME;

this.spinner.start(messages.getMessage('spinner.start'));
Expand Down

0 comments on commit 54618a4

Please sign in to comment.