From 3bb725e3211accf584d2ea9d0890c3ca52e16a4a Mon Sep 17 00:00:00 2001 From: Dr John Tunnicliffe Date: Sat, 23 Mar 2019 13:37:57 +0000 Subject: [PATCH] Update PublishToPSGallery.ps1 --- PublishToPSGallery.ps1 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/PublishToPSGallery.ps1 b/PublishToPSGallery.ps1 index a7215df..0ce6e6a 100644 --- a/PublishToPSGallery.ps1 +++ b/PublishToPSGallery.ps1 @@ -10,8 +10,8 @@ $baseDir = $PSScriptRoot; try { - $buildDir = Resolve-Path "$baseDir\PublishDacPac.psd1"; - Write-Host $buildDir; + $buildDir = "$baseDir\PublishDacPac"; + Write-Information $buildDir; Write-Verbose 'Importing PowerShellGet module' $psGet = Import-Module PowerShellGet -PassThru -Verbose:$false & $psGet { [CmdletBinding()] param () Install-NuGetClientBinaries -CallerPSCmdlet $PSCmdlet -BootstrapNuGetExe -Force }