@@ -21,7 +21,7 @@ function Start-Copy {
21
21
$AuthDocs = Join-Path $SDKDocsPath " Authentication" " docs"
22
22
$ModulePrefix = " Microsoft.Graph"
23
23
# Copy the authenitcation module first
24
- Copy-Files - DocPath $AuthDocs - GraphProfilePath " graph-powershell-1.0" - Module " Authentication" - ModulePrefix $ModulePrefix - GraphProfile " v1.0"
24
+ Copy-Files - DocPath $AuthDocs - GraphProfilePath " graph-powershell-1.0" - ModuleName " Authentication" - ModulePrefix $ModulePrefix - GraphProfile " v1.0"
25
25
26
26
$GraphMapping = Get-GraphMapping
27
27
$GraphMapping.Keys | ForEach-Object {
@@ -52,7 +52,7 @@ function Get-FilesByProfile{
52
52
$ModulesToGenerate | ForEach-Object {
53
53
$ModuleName = $_
54
54
$docs = Join-Path $SDKDocsPath $ModuleName $GraphProfile " docs"
55
- Copy-Files - DocPath $docs - GraphProfilePath $GraphProfilePath - Module $ModuleName - ModulePrefix $ModulePrefix - GraphProfile $GraphProfile
55
+ Copy-Files - DocPath $docs - GraphProfilePath $GraphProfilePath - ModuleName $ModuleName - ModulePrefix $ModulePrefix - GraphProfile $GraphProfile
56
56
}
57
57
58
58
}
@@ -63,7 +63,7 @@ function Copy-Files{
63
63
[ValidateNotNullOrEmpty ()]
64
64
[string ] $GraphProfilePath = " graph-powershell-1.0" ,
65
65
[ValidateNotNullOrEmpty ()]
66
- [string ] $Module = " Users" ,
66
+ [string ] $ModuleName = " Users" ,
67
67
[ValidateNotNullOrEmpty ()]
68
68
[string ] $ModulePrefix = " Microsoft.Graph" ,
69
69
[ValidateNotNullOrEmpty ()]
0 commit comments