Skip to content

Commit

Permalink
added string definition
Browse files Browse the repository at this point in the history
  • Loading branch information
Stian-Schikora committed Jan 3, 2023
1 parent b8fdcd7 commit 0b937bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/commands/commands.ts
Original file line number Diff line number Diff line change
Expand Up @@ -220,7 +220,7 @@ export function deployUnpackagable() {

export function deployUnpackagableJob(): EXTENSION_CONTEXT | Promise<string> {
//Get path to unpackagable and deploy
let unpackPath = vscode.workspace.getConfiguration().get('unpackagable.location');
let unpackPath = vscode.workspace.getConfiguration().get('unpackagable.location') as string;
if(!unpackPath || unpackPath === '') {
return new Promise<string>((resolve, reject) => {
resolve('No unpack');
Expand Down

0 comments on commit 0b937bd

Please sign in to comment.