Skip to content

Commit 0001e76

Browse files
authored
Merge pull request #4819 from NativeScript/kddimitrov/fix-missing-build-output-location
fix: build output location not printed
2 parents 236ec34 + c37d1dd commit 0001e76

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)