Skip to content

Commit 43f994a

Browse files
committed
Fix case sensitive linux path
1 parent 238efee commit 43f994a

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

ModuleFast.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -390,7 +390,7 @@ function Install-ModuleFast {
390390
)
391391

392392
# Setup the Destination repository
393-
$defaultRepoPath = $(Join-Path ([Environment]::GetFolderPath('LocalApplicationData')) 'powershell/modules')
393+
$defaultRepoPath = $(Join-Path ([Environment]::GetFolderPath('LocalApplicationData')) 'powershell/Modules')
394394
if (-not $Destination) {
395395
$Destination = $defaultRepoPath
396396
}

0 commit comments

Comments
 (0)