File tree 1 file changed +2
-2
lines changed
1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ export class BuildIosCommand extends BuildCommandBase implements ICommand {
97
97
98
98
super . validatePlatform ( platform ) ;
99
99
100
- let result = await super . canExecuteCommandBase ( platform ) ;
100
+ let result = await super . canExecuteCommandBase ( platform , { notConfiguredEnvOptions : { hideSyncToPreviewAppOption : true } } ) ;
101
101
if ( result . canExecute ) {
102
102
result = await super . validateArgs ( args , platform ) ;
103
103
}
@@ -129,7 +129,7 @@ export class BuildAndroidCommand extends BuildCommandBase implements ICommand {
129
129
const platform = this . $devicePlatformsConstants . Android ;
130
130
super . validatePlatform ( platform ) ;
131
131
132
- let result = await super . canExecuteCommandBase ( platform ) ;
132
+ let result = await super . canExecuteCommandBase ( platform , { notConfiguredEnvOptions : { hideSyncToPreviewAppOption : true } } ) ;
133
133
if ( result . canExecute ) {
134
134
if ( this . $options . release && ( ! this . $options . keyStorePath || ! this . $options . keyStorePassword || ! this . $options . keyStoreAlias || ! this . $options . keyStoreAliasPassword ) ) {
135
135
this . $errors . fail ( ANDROID_RELEASE_BUILD_ERROR_MESSAGE ) ;
You can’t perform that action at this time.
0 commit comments