Skip to content

Commit

Permalink
Update BrightScriptCommands.ts
Browse files Browse the repository at this point in the history
  • Loading branch information
fumer-fubotv committed Oct 27, 2023
1 parent b83a203 commit 1a1320e
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions src/BrightScriptCommands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -411,8 +411,9 @@ export class BrightScriptCommands {
return this.workspacePath;
}

public async getSigningPassword(showPrompt = true) {
let signingPassword = await this.context.workspaceState.get('signingPassword');
public async getSigningPassword(showPrompt = true): Promise<string> {
let signingPassword = '';
signingPassword = await this.context.workspaceState.get('signingPassword');
if (!signingPassword) {
let config = vscode.workspace.getConfiguration('brightscript.remoteControl', null);
signingPassword = config.get('signingPassword');
Expand Down

0 comments on commit 1a1320e

Please sign in to comment.