File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -150,7 +150,11 @@ if ($longPathSupport -eq 'Y' -or $longPathSupport -eq 'y')
150
150
fsutil 8dot3name set 0
151
151
152
152
Write-Host " Set bazel output to C:/tmp instead of nested inside project directory"
153
- Set-Content - Path " .bazelrc.windows.local" - Value " startup --output_user_root=C:/tmp" - Encoding UTF8
153
+ $currentDirectory = Get-Location
154
+ $filePath = [System.IO.Path ]::Combine($currentDirectory , " selenium/.bazelrc.windows.local" )
155
+ $text = " startup --output_user_root=C:/tmp"
156
+ $encoding = New-Object System.Text.UTF8Encoding($false )
157
+ [System.IO.File ]::WriteAllText($filePath , $text , $encoding )
154
158
}
155
159
156
160
$intelliJChoice = Read-Host " Do you want to install and setup IntelliJ (Y/N)"
You can’t perform that action at this time.
0 commit comments