Skip to content

Commit c37d1dd

Browse files
committed
fix: build output location not printed
1 parent 4f84379 commit c37d1dd

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

lib/controllers/build-controller.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,8 @@ export class BuildController extends EventEmitter implements IBuildController {
6666

6767
if (buildData.copyTo) {
6868
this.$buildArtefactsService.copyLatestAppPackage(buildData.copyTo, platformData, buildData);
69-
this.$logger.info(`The build result is located at: ${buildInfoFileDir}`);
69+
} else {
70+
this.$logger.info(`The build result is located at: ${result}`);
7071
}
7172

7273
return result;

0 commit comments

Comments
 (0)