Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 0 additions & 5 deletions plaster/PlasterContent.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -148,11 +148,6 @@ $Content = @(
Source = 'scaffold\build\docs\*'
Destination = 'build\docs'
},
@{
ContentType = 'templateFile'
Source = 'scaffold\build\docs\ReadTheDocs\*'
Destination = 'build\docs\ReadTheDocs'
},
@{
ContentType = 'templateFile'
Source = 'scaffold\build\docs\en-US\about_ModuleName.help.txt'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Note
# Note
Any ps1 files in this directory are run at the end of your build. These should only include post build clean up tasks.
4 changes: 2 additions & 2 deletions src/public/Initialize-ModuleBuild.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -68,9 +68,9 @@ Enjoy!

$PlasterResults = invoke-plaster @PlasterParams -NoLogo -PassThru

# Get the newly created buildenvironment file and run it the first time to create the fist export file.
# Get the newly created buildenvironment file and run it the first time to create the first export file.
$BuildDefinition = Get-ChildItem (Join-Path $PlasterResults.DestinationPath 'build') -Filter '*.buildenvironment.ps1'
$strCommand = "powershell -noprofile -WindowStyle hidden -file $($BuildDefinition.FullName)"
$strCommand = "powershell -noprofile -WindowStyle hidden -file '$($BuildDefinition.FullName)'"

try {

Expand Down