diff --git a/src/commands/wizard/deployToOrgCommand.ts b/src/commands/wizard/deployToOrgCommand.ts index 7a826c1..278643f 100644 --- a/src/commands/wizard/deployToOrgCommand.ts +++ b/src/commands/wizard/deployToOrgCommand.ts @@ -35,10 +35,7 @@ export class DeployToOrgCommand { currentWorkspace.workspaceFolders[0].uri.fsPath; const forceAppPath = path.join(workspaceFolderPath, 'force-app'); const forceAppUri = Uri.file(forceAppPath); - await commands.executeCommand( - 'sf.deploy.source.path', - forceAppUri - ); + await commands.executeCommand('sf.deploy.source.path', forceAppUri); return Promise.resolve(true); } }