We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0283b8b commit 8e3d940Copy full SHA for 8e3d940
src/exportJarSteps/GenerateJarExecutor.ts
@@ -37,6 +37,9 @@ export class GenerateJarExecutor implements IExportJarStepExecutor {
37
let destPath = "";
38
if (stepMetadata.outputPath === SETTING_ASKUSER) {
39
const outputUri: Uri = await saveDialog(stepMetadata.workspaceFolder.uri, "Generate");
40
+ if (outputUri === undefined) {
41
+ return Promise.reject();
42
+ }
43
destPath = outputUri.fsPath;
44
} else {
45
// Both the absolute path and the relative path (to workspace folder) are supported.
0 commit comments