Skip to content

Commit

Permalink
Fix outputPath Angular16
Browse files Browse the repository at this point in the history
  • Loading branch information
ggallotti committed May 10, 2023
1 parent e6ad770 commit 69d47df
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion libs/ngx-aws-deploy/src/lib/deploy/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ export default createBuilder(
context.logger.info(`✔ Build Completed`);
}
if (buildResult.success) {
const filesPath = buildResult.outputPath as string;
const filesPath = buildResult.outputPath ?? buildResult.outputs[0].path;
const files = getFiles(filesPath);

if (files.length === 0) {
Expand Down

0 comments on commit 69d47df

Please sign in to comment.