Skip to content

Commit

Permalink
fix: Add await to the code block handling output folders (#381)
Browse files Browse the repository at this point in the history
  • Loading branch information
CsCherrYY authored Nov 17, 2020
1 parent ab59282 commit d04fc72
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/exportJarSteps/GenerateJarExecutor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ export class GenerateJarExecutor implements IExportJarStepExecutor {
};
stepMetadata.classpaths.push(classpath);
} else {
this.setStepMetadataFromOutputFolder(item.path, stepMetadata);
await this.setStepMetadataFromOutputFolder(item.path, stepMetadata);
}
}
return resolve(true);
Expand Down

0 comments on commit d04fc72

Please sign in to comment.