File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/Umbraco.Core/Manifest Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -60,7 +60,7 @@ internal static IEnumerable<ParameterEditor> GetParameterEditors(JArray jsonEdit
60
60
public IEnumerable < PackageManifest > GetManifests ( )
61
61
{
62
62
//get all Manifest.js files in the appropriate folders
63
- var manifestFileContents = GetAllManfifestFileContents ( _pluginsDir ) ;
63
+ var manifestFileContents = GetAllManifestFileContents ( _pluginsDir ) ;
64
64
return CreateManifests ( manifestFileContents . ToArray ( ) ) ;
65
65
}
66
66
@@ -69,7 +69,7 @@ public IEnumerable<PackageManifest> GetManifests()
69
69
/// </summary>
70
70
/// <param name="currDir"></param>
71
71
/// <returns></returns>
72
- private IEnumerable < string > GetAllManfifestFileContents ( DirectoryInfo currDir )
72
+ private IEnumerable < string > GetAllManifestFileContents ( DirectoryInfo currDir )
73
73
{
74
74
var depth = FolderDepth ( _pluginsDir , currDir ) ;
75
75
@@ -79,7 +79,7 @@ private IEnumerable<string> GetAllManfifestFileContents(DirectoryInfo currDir)
79
79
var result = new List < string > ( ) ;
80
80
foreach ( var d in dirs )
81
81
{
82
- result . AddRange ( GetAllManfifestFileContents ( d ) ) ;
82
+ result . AddRange ( GetAllManifestFileContents ( d ) ) ;
83
83
}
84
84
return result ;
85
85
}
You can’t perform that action at this time.
0 commit comments