mirror of
https://github.com/pre-commit/pre-commit.git
synced 2026-02-20 01:24:42 +04:00
add support for R via renv
This commit is contained in:
parent
b193d9e67b
commit
f1502119a2
15 changed files with 443 additions and 4 deletions
6
testing/get-r.ps1
Normal file
6
testing/get-r.ps1
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
$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"
|
||||
Loading…
Add table
Add a link
Reference in a new issue