Skip to content

Commit

Permalink
Fix bug in precondition IB task GenerateMarkdown
Browse files Browse the repository at this point in the history
  • Loading branch information
devblackops committed Mar 14, 2021
1 parent 0b59a58 commit 0a7a17b
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/)
and this project adheres to [Semantic Versioning](http://semver.org/).

## [0.6.1] 2021-03-14

### Fixed

- Fixed bug in IB task `GenerateMarkdown` when dot sourcing precondition

## [0.6.0] 2021-03-14

### Changed
Expand Down
2 changes: 1 addition & 1 deletion PowerShellBuild/IB.tasks.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ $genMarkdownPreReqs = {
}

# Synopsis: Generates PlatyPS markdown files from module help
task GenerateMarkdown -if ($genMarkdownPreReqs) StageFiles,{
task GenerateMarkdown -if (. $genMarkdownPreReqs) StageFiles,{
$buildMDParams = @{
ModulePath = $PSBPreference.Build.ModuleOutDir
ModuleName = $PSBPreference.General.ModuleName
Expand Down

0 comments on commit 0a7a17b

Please sign in to comment.