1010(
1111 DEV_ENV_ORG_NOT_IN_REGISTRY ,
1212 DEV_ENV_ORG_INSTALLED_LOCALLY ,
13- DEV_ENV_ORG_REAINSTALL ,
13+ DEV_ENV_ORG_REINSTALL ,
1414 DEV_ENV_ORG_READY ,
1515) = range (4 )
1616
2323dev_env_org_status_messages = {
2424 DEV_ENV_ORG_NOT_IN_REGISTRY : "[red]Error: Required image is not available in the registry![/]" ,
2525 DEV_ENV_ORG_INSTALLED_LOCALLY : "Installed locally." ,
26- DEV_ENV_ORG_REAINSTALL : "Incomplete local install. Reinstall needed ." ,
26+ DEV_ENV_ORG_REINSTALL : "Incomplete local install. The missing images are available in the registry. Use `dem pull` to reinstall ." ,
2727 DEV_ENV_ORG_READY : "Ready to be installed." ,
2828}
2929
3030dev_env_local_status_messages = {
3131 DEV_ENV_LOCAL_NOT_AVAILABLE : "[red]Error: Required image is not available![/]" ,
32- DEV_ENV_LOCAL_REINSTALL : "Incopmlete local install. Reinstall needed ." ,
32+ DEV_ENV_LOCAL_REINSTALL : "Incomplete local install. The missing images are available in the registry. Use `dem pull` to reinstall ." ,
3333 DEV_ENV_LOCAL_INSTALLED : "Installed." ,
3434}
3535
@@ -42,7 +42,7 @@ def get_catalog_dev_env_status(platform: DevEnvLocalSetup, dev_env: DevEnv) -> s
4242 dev_env_status = dev_env_org_status_messages [DEV_ENV_ORG_INSTALLED_LOCALLY ]
4343 else :
4444 if (platform .get_local_dev_env (dev_env ) is not None ):
45- dev_env_status = dev_env_org_status_messages [DEV_ENV_ORG_REAINSTALL ]
45+ dev_env_status = dev_env_org_status_messages [DEV_ENV_ORG_REINSTALL ]
4646 else :
4747 dev_env_status = dev_env_org_status_messages [DEV_ENV_ORG_READY ]
4848 return dev_env_status
0 commit comments