File tree Expand file tree Collapse file tree 1 file changed +0
-5
lines changed
Expand file tree Collapse file tree 1 file changed +0
-5
lines changed Original file line number Diff line number Diff 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"
You can’t perform that action at this time.
0 commit comments