Skip to content

Commit f2a0bf9

Browse files
committed
Updating files from the sdk
1 parent a83629c commit f2a0bf9

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

scripts/FileCopy.ps1

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ function Start-Copy {
2121
$AuthDocs = Join-Path $SDKDocsPath "Authentication" "docs"
2222
$ModulePrefix = "Microsoft.Graph"
2323
#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"
2525

2626
$GraphMapping = Get-GraphMapping
2727
$GraphMapping.Keys | ForEach-Object {
@@ -52,7 +52,7 @@ function Get-FilesByProfile{
5252
$ModulesToGenerate | ForEach-Object {
5353
$ModuleName = $_
5454
$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
5656
}
5757

5858
}
@@ -63,7 +63,7 @@ function Copy-Files{
6363
[ValidateNotNullOrEmpty()]
6464
[string] $GraphProfilePath = "graph-powershell-1.0",
6565
[ValidateNotNullOrEmpty()]
66-
[string] $Module = "Users",
66+
[string] $ModuleName = "Users",
6767
[ValidateNotNullOrEmpty()]
6868
[string] $ModulePrefix = "Microsoft.Graph",
6969
[ValidateNotNullOrEmpty()]

0 commit comments

Comments
 (0)