Skip to content

Commit 257e895

Browse files
committed
chore: fix comments
1 parent a68909a commit 257e895

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

lib/services/ios-project-service.ts

+3-3
Original file line numberDiff line numberDiff line change
@@ -1110,17 +1110,17 @@ We will now place an empty obsolete compatability white screen LauncScreen.xib f
11101110
const pbxProjPath = this.getPbxProjPath(projectData);
11111111
const addedExtensionsFromResources = await this.$iOSExtensionsService.addExtensionsFromPath({extensionsFolderPath: resorcesExtensionsPath, projectData, platformData, pbxProjPath});
11121112
const plugins = await this.getAllInstalledPlugins(projectData);
1113-
let addedExtensionsFromPlugisns = false;
1113+
let addedExtensionsFromPlugins = false;
11141114
for (const pluginIndex in plugins) {
11151115
const pluginData = plugins[pluginIndex];
11161116
const pluginPlatformsFolderPath = pluginData.pluginPlatformsFolderPath(IOSProjectService.IOS_PLATFORM_NAME);
11171117

11181118
const extensionPath = path.join(pluginPlatformsFolderPath, constants.NATIVE_EXTENSION_FOLDER);
11191119
const addedExtensionFromPlugin = await this.$iOSExtensionsService.addExtensionsFromPath({extensionsFolderPath: extensionPath, projectData, platformData, pbxProjPath});
1120-
addedExtensionsFromPlugisns = addedExtensionsFromPlugisns || addedExtensionFromPlugin;
1120+
addedExtensionsFromPlugins = addedExtensionsFromPlugins || addedExtensionFromPlugin;
11211121
}
11221122

1123-
if (addedExtensionsFromResources || addedExtensionsFromPlugisns) {
1123+
if (addedExtensionsFromResources || addedExtensionsFromPlugins) {
11241124
this.$logger.warn("The support for iOS App Extensions is currently in Beta. For more information about the current development state and any known issues, please check the relevant GitHub issue: https://github.com/NativeScript/nativescript-cli/issues/4472");
11251125
}
11261126
}

0 commit comments

Comments
 (0)