Skip to content

Commit

Permalink
Build script update, version bump
Browse files Browse the repository at this point in the history
Typo in build script was putting all files into a single directory, losing the structure needed for DSC resources.
  • Loading branch information
dlwyatt committed Apr 1, 2015
1 parent d089f04 commit 8780b28
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion PolicyFileEditor.psd1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
@{
ModuleToProcess = 'PolicyFileEditor.psm1'
ModuleVersion = '1.4.1'
ModuleVersion = '1.4.2'
GUID = '110a2398-3053-4ffc-89d1-1b6a38a2dc86'
Author = 'Dave Wyatt'
CompanyName = 'Home'
Expand Down
2 changes: 1 addition & 1 deletion build.psake.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Task Build -depends Test {
Where { $file = $_; -not ($filesToExclude | Where { $file.Name -like $_ }) } |
ForEach {
$sourceFile = $_
$relativePath = Get-RelativePath -Path $sourceFile.FillName -RelativeTo $source
$relativePath = Get-RelativePath -Path $sourceFile.FullName -RelativeTo $source
$targetPath = Join-Path $buildTarget $relativePath
$parent = Split-Path $targetPath -Parent

Expand Down

0 comments on commit 8780b28

Please sign in to comment.