mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-01-14 21:10:27 -06:00
7 lines
257 B
PowerShell
7 lines
257 B
PowerShell
$dir = $Env:Temp
|
|
$urlR = "https://cran.r-project.org/bin/windows/base/old/4.0.4/R-4.0.4-win.exe"
|
|
$outputR = "$dir\R-win.exe"
|
|
$wcR = New-Object System.Net.WebClient
|
|
$wcR.DownloadFile($urlR, $outputR)
|
|
Start-Process -FilePath $outputR -ArgumentList "/S /v/qn"
|