Skip to content

Commit

Permalink
Fixing path for module nupkg output
Browse files Browse the repository at this point in the history
  • Loading branch information
MiYanni committed Dec 19, 2018
1 parent 7566c9f commit dd0096f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/PublishModules.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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")
Expand Down

0 comments on commit dd0096f

Please sign in to comment.