Skip to content

Commit c63c309

Browse files
Merge pull request #43 from PowershellFrameworkCollective/development
Bugfix build
2 parents f0b54d5 + dcbe32a commit c63c309

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

PSModuleDevelopment/PSModuleDevelopment.psd1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
RootModule = 'PSModuleDevelopment.psm1'
55

66
# Version number of this module.
7-
ModuleVersion = '2.2.5.26'
7+
ModuleVersion = '2.2.5.27'
88

99
# ID used to uniquely identify this module
1010
GUID = '37dd5fce-e7b5-4d57-ac37-832055ce49d6'

PSModuleDevelopment/PSModuleDevelopment.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$script:PSModuleRoot = $PSScriptRoot
2-
$script:PSModuleVersion = "2.2.5.26"
2+
$script:PSModuleVersion = "2.2.5.27"
33

44
$script:doDotSource = $false
55
if (Get-PSFConfigValue -FullName PSModuleDevelopment.Import.DoDotSource) { $script:doDotSource = $true }

PSModuleDevelopment/changelog.md

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,8 @@
11
# Changelog
2-
## 2.2.5.26 (September 06th, 2018)
2+
## 2.2.5.27 (September 08th, 2018)
3+
- Fix: Fixes in the build task
4+
5+
## 2.2.5.26 (September 08th, 2018)
36
- New: Command Read-PSMDScript (Alias: parse)
47
- New: Command Set-PSMDEncoding
58
- New: Template PSFTests - Default module tests

build/vsts-build.ps1

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Copy-Item -Path "$($templateBuild.FullName)\output\*" -Destination "$($item.Full
2828
if ($env:BUILD_BUILDURI -like "vstfs*")
2929
{
3030
Write-PSFMessage -Level Host -Message "Publishing to gallery"
31-
if ($WhatIf -or -not $ApiKey) { Publish-Module -Path "$($env:SYSTEM_DEFAULTWORKINGDIRECTORY)\PSModuleDevelopment" -NuGetApiKey $ApiKey -Force -WhatIf }
32-
else { Publish-Module -Path "$($env:SYSTEM_DEFAULTWORKINGDIRECTORY)\PSModuleDevelopment" -NuGetApiKey $ApiKey -Force }
31+
if ($WhatIf -or -not $ApiKey) { Publish-Module -Path "$($item.FullName)\PSModuleDevelopment" -NuGetApiKey $ApiKey -Force -WhatIf }
32+
else { Publish-Module -Path "$($item.FullName)\PSModuleDevelopment" -NuGetApiKey $ApiKey -Force }
3333
}
3434
else { Write-PSFMessage -Level Host -Message "Skipping publish to gallery" }

0 commit comments

Comments
 (0)