Skip to content

Commit a29ced3

Browse files
committed
chore: fix aab messages after review
1 parent 11bd5ba commit a29ced3

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

docs/man_pages/project/testing/build-android.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ General | `$ tns build android [--compileSdk <API Level>] [--key-store-path <Fil
2727
* `--copy-to` - Specifies the file path where the built `.apk` will be copied. If it points to a non-existent directory, it will be created. If the specified value is directory, the original file name will be used.
2828
* `--bundle` - Specifies that the `webpack` bundler will be used to bundle the application.
2929
* `--env.*` - Specifies additional flags that the bundler may process. May be passed multiple times. For example: `--env.uglify --env.snapshot`.
30-
* `--aab` - Specifies that the build must produce an Android App Bundle(`.aab`) file.
30+
* `--aab` - Specifies that the build will produce an Android App Bundle(`.aab`) file.
3131

3232
<% if(isHtml) { %>
3333

lib/commands/build.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ export abstract class BuildCommandBase extends ValidatePlatformCommandBase {
5151
if (this.$options.copyTo) {
5252
this.$platformService.copyLastOutput(platform, this.$options.copyTo, buildConfig, this.$projectData);
5353
} else {
54-
this.$logger.info(`Your build result is located at: ${outputPath}`);
54+
this.$logger.info(`The build result is located at: ${outputPath}`);
5555
}
5656

5757
return outputPath;

lib/services/platform-service.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -258,7 +258,7 @@ export class PlatformService extends EventEmitter implements IPlatformService {
258258

259259
public async validateOptions(provision: true | string, teamId: true | string, projectData: IProjectData, platform?: string, aab?: boolean): Promise<boolean> {
260260
if (platform && !this.$mobileHelper.isAndroidPlatform(platform) && aab) {
261-
this.$errors.failWithoutHelp("Option --aab is supported for Android platform only.");
261+
this.$errors.failWithoutHelp("The --aab option is supported only for the Android platform.");
262262
}
263263

264264
if (platform) {

0 commit comments

Comments
 (0)