From dd0096ff696e0d04beacc89f414e045f187eecc5 Mon Sep 17 00:00:00 2001 From: MiYanni Date: Wed, 19 Dec 2018 13:51:32 -0800 Subject: [PATCH] Fixing path for module nupkg output --- tools/PublishModules.ps1 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/PublishModules.ps1 b/tools/PublishModules.ps1 index e2cdac9eda64..99ffed0c40e4 100644 --- a/tools/PublishModules.ps1 +++ b/tools/PublishModules.ps1 @@ -861,7 +861,7 @@ if ($Scope -eq 'Stack') { } # Set temporary repo location $PublishLocal = test-path $repositoryLocation -[string]$tempRepoPath = "$packageFolder" +[string]$tempRepoPath = (Join-Path $packageFolder -ChildPath "Package") if ($PublishLocal) { if ($Scope -eq 'Stack') { $tempRepoPath = (Join-Path $repositoryLocation -ChildPath "Stack")