File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
src/PostSharp.Engineering.BuildTools/Resources Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -594,7 +594,7 @@ $GitDirectories = $expandedGitDirectories
594594# Deduplicate again after transformations and expansions (case-insensitive for Windows paths)
595595$VolumeMappings = $VolumeMappings | Group-Object { $_.ToLower () } | ForEach-Object { $_.Group [0 ] }
596596$MountPoints = $MountPoints | Group-Object { $_.ToLower () } | ForEach-Object { $_.Group [0 ] }
597- $GitDirectories = $GitDirectories | Group-Object { $_ .FullName .ToLower () } | ForEach-Object { $_.Group [0 ] }
597+ $GitDirectories = $GitDirectories | Group-Object { " $_ " .ToLower() } | ForEach-Object { $_.Group [0 ] }
598598
599599# Build subst commands string for inline execution in docker run
600600$substCommandsInline = " "
Original file line number Diff line number Diff line change @@ -594,7 +594,7 @@ $GitDirectories = $expandedGitDirectories
594594# Deduplicate again after transformations and expansions (case-insensitive for Windows paths)
595595$VolumeMappings = $VolumeMappings | Group-Object { $_.ToLower () } | ForEach-Object { $_.Group [0 ] }
596596$MountPoints = $MountPoints | Group-Object { $_.ToLower () } | ForEach-Object { $_.Group [0 ] }
597- $GitDirectories = $GitDirectories | Group-Object { $_ .FullName .ToLower () } | ForEach-Object { $_.Group [0 ] }
597+ $GitDirectories = $GitDirectories | Group-Object { " $_ " .ToLower() } | ForEach-Object { $_.Group [0 ] }
598598
599599# Build subst commands string for inline execution in docker run
600600$substCommandsInline = " "
You can’t perform that action at this time.
0 commit comments