Skip to content

Commit 0a7a17b

Browse files
committed
Fix bug in precondition IB task GenerateMarkdown
1 parent 0b59a58 commit 0a7a17b

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
55
The format is based on [Keep a Changelog](http://keepachangelog.com/)
66
and this project adheres to [Semantic Versioning](http://semver.org/).
77

8+
## [0.6.1] 2021-03-14
9+
10+
### Fixed
11+
12+
- Fixed bug in IB task `GenerateMarkdown` when dot sourcing precondition
13+
814
## [0.6.0] 2021-03-14
915

1016
### Changed

PowerShellBuild/IB.tasks.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ $genMarkdownPreReqs = {
115115
}
116116

117117
# Synopsis: Generates PlatyPS markdown files from module help
118-
task GenerateMarkdown -if ($genMarkdownPreReqs) StageFiles,{
118+
task GenerateMarkdown -if (. $genMarkdownPreReqs) StageFiles,{
119119
$buildMDParams = @{
120120
ModulePath = $PSBPreference.Build.ModuleOutDir
121121
ModuleName = $PSBPreference.General.ModuleName

0 commit comments

Comments
 (0)