Skip to content

Commit 7adf1e7

Browse files
authored
Merge pull request #24 from pauby/fix-path-case
Change path case for use under Core on Linux
2 parents e81c171 + d0c85e6 commit 7adf1e7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

PowerShellBuild/PowerShellBuild.psm1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
Set-BuildEnvironment -Force
33

44
# Dot source public functions
5-
$public = @(Get-ChildItem -Path (Join-Path -Path $PSScriptRoot -ChildPath 'public/*.ps1') -Recurse -ErrorAction Stop)
5+
$public = @(Get-ChildItem -Path (Join-Path -Path $PSScriptRoot -ChildPath 'Public/*.ps1') -Recurse -ErrorAction Stop)
66
foreach ($import in $public) {
77
try {
88
. $import.FullName

0 commit comments

Comments
 (0)