You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -16,7 +17,6 @@ export class PlatformEnvironmentRequirements implements IPlatformEnvironmentRequ
16
17
privatestaticBOTH_CLOUD_BUILDS_AND_SETUP_SCRIPT_OPTION_NAME="Configure for Both Local and Cloud Builds";
17
18
privatestaticNOT_CONFIGURED_ENV_MESSAGE="To continue, choose one of the following options: ";
18
19
privatestaticNOT_CONFIGURED_ENV_AFTER_SETUP_SCRIPT_MESSAGE="The setup script was not able to configure your environment for local builds. To execute local builds, you have to set up your environment manually. To continue, choose one of the following options:";
this.fail("You are missing the nativescript-cloud extension and you will not be able to execute cloud builds. Your environment is not configured properly and you will not be able to execute local builds. To continue, choose one of the following options: "+EOL
31
+
this.fail(`You are missing the ${constants.NATIVESCRIPT_CLOUD_EXTENSION_NAME} extension and you will not be able to execute cloud builds. Your environment is not configured properly and you will not be able to execute local builds. To continue, choose one of the following options: `+EOL
32
32
+"Run $ tns setup command to run the setup script to try to automatically configure your environment for local builds."+EOL
33
-
+"Run $ tns cloud setup command to install the nativescript-cloud extension to configure your environment for cloud builds."+EOL
33
+
+`Run $ tns cloud setup command to install the ${constants.NATIVESCRIPT_CLOUD_EXTENSION_NAME} extension to configure your environment for cloud builds.`+EOL
34
34
+`Verify that your environment is configured according to the system requirements described at ${this.$staticConfig.SYS_REQUIREMENTS_LINK}`);
35
35
}
36
36
37
-
this.$logger.info("You are missing the nativescript-cloud extension and you will not be able to execute cloud builds. Your environment is not configured properly and you will not be able to execute local builds. "+EOL
38
-
+"Select “Configure for Cloud Builds” to install the nativescript-cloud extension and automatically configure your environment for cloud builds."+EOL
39
-
+"Select “Configure for Local Builds” to run the setup script and automatically configure your environment for local builds."
40
-
+"Select “Configure for Both Local and Cloud Builds” to automatically configure your environment for both options."
41
-
+"Select “Skip Step and Configure Manually” to disregard these options and install any required components manually.");
37
+
this.$logger.info(`You are missing the ${constants.NATIVESCRIPT_CLOUD_EXTENSION_NAME} extension and you will not be able to execute cloud builds. Your environment is not configured properly and you will not be able to execute local builds. `+EOL
38
+
+`Select "Configure for Cloud Builds" to install the ${constants.NATIVESCRIPT_CLOUD_EXTENSION_NAME} extension and automatically configure your environment for cloud builds.`+EOL
39
+
+`Select "Configure for Local Builds" to run the setup script and automatically configure your environment for local builds.`
40
+
+`Select "Configure for Both Local and Cloud Builds" to automatically configure your environment for both options.`
41
+
+`Select "Skip Step and Configure Manually" to disregard these options and install any required components manually.`);
@@ -108,10 +103,16 @@ export class PlatformEnvironmentRequirements implements IPlatformEnvironmentRequ
108
103
}
109
104
110
105
if(!platform){
111
-
return`Use the $ tns login command to log in with your account and then $ tns cloud ${cloudCommandName.toLowerCase()} command to build your app in the cloud.`;
106
+
return`Use the $ tns login command to log in with your account and then $ ${cloudCommandName.toLowerCase()} command.`;
112
107
}
113
108
114
-
return`Use the $ tns login command to log in with your account and then $ tns cloud ${cloudCommandName.toLowerCase()}${platform.toLowerCase()} command to build your app in the cloud.`;
109
+
return`Use the $ tns login command to log in with your account and then $ ${cloudCommandName.toLowerCase()}${platform.toLowerCase()} command.`;
0 commit comments