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 95dd252 commit 9fc5bf3Copy full SHA for 9fc5bf3
src/exportJarSteps/ExportJarTaskProvider.ts
@@ -35,6 +35,9 @@ interface IExportJarTaskDefinition extends TaskDefinition {
35
let isExportingJar: boolean = false;
36
37
export async function executeExportJarTask(node?: INodeData): Promise<void> {
38
+ // save the workspace first
39
+ await workspace.saveAll(false /*includeUntitled*/);
40
+
41
if (!await languageServerApiManager.isStandardServerReady() || isExportingJar || await buildWorkspace() === false) {
42
return;
43
}
0 commit comments