From 711454c78e9a626a09b1607e64f93971c0bc9a86 Mon Sep 17 00:00:00 2001 From: Wes Carroll Date: Mon, 18 Mar 2019 10:06:10 -0400 Subject: [PATCH] Fix HelpMessage Typo --- ZertoApiWrapper/Public/Export-ZertoVpg.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ZertoApiWrapper/Public/Export-ZertoVpg.ps1 b/ZertoApiWrapper/Public/Export-ZertoVpg.ps1 index b51dffa..90d0c73 100644 --- a/ZertoApiWrapper/Public/Export-ZertoVpg.ps1 +++ b/ZertoApiWrapper/Public/Export-ZertoVpg.ps1 @@ -30,7 +30,7 @@ function Export-ZertoVpg { foreach ($name in $vpgName) { $vpgSettingsIdentifier = New-ZertoVpgSettingsIdentifier -vpgIdentifier $(Get-ZertoVpg -name $name).vpgIdentifier $vpgSettings = Get-ZertoVpgSetting -vpgSettingsIdentifier $vpgSettingsIdentifier - $filePath = "{0}\{1}.json" -f $outputPath, $name + $filePath = "{0}\{1}.json" -f $outputFolder, $name $vpgSettings | Convertto-Json -depth 10 | Out-File -FilePath $filePath } }