Skip to content

Commit 697c122

Browse files
authored
adjust comments
1 parent fc24040 commit 697c122

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

vendor/psmodules/Cmder.ps1

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -151,17 +151,12 @@ function Set-GitPath {
151151
$newPath = "$gitCmd;$newPath"
152152
}
153153

154-
<<<<<<< HEAD
155154
# Add mingw[32|64]\bin directories to the path, if they exist and not already present
156-
foreach ($mingw in @('mingw64', 'mingw32')) {
157-
=======
158-
# Add mingw bin directory
159155
# Prefer mingw64 on 64-bit systems, mingw32 on 32-bit systems
160156
$is64Bit = [Environment]::Is64BitOperatingSystem
161157
$mingwDirs = if ($is64Bit) { @('mingw64', 'mingw32') } else { @('mingw32') }
162158

163159
foreach ($mingw in $mingwDirs) {
164-
>>>>>>> a1def7195e8050d0f964f292d51c695e0e07dbef
165160
$mingwBin = Join-Path $GitRoot "$mingw\bin"
166161
if ((Test-Path $mingwBin) -and -not ($newPath -match [regex]::Escape($mingwBin))) {
167162
Write-Debug "Adding $mingwBin to the path"

0 commit comments

Comments
 (0)