From b05deaf801081cdaca15a8eac692a517f32ac02f Mon Sep 17 00:00:00 2001 From: Frederik Vanrenterghem Date: Tue, 14 Apr 2020 19:00:19 +0800 Subject: [PATCH] Use secure URL for CRAN. --- R/.Rprofile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/R/.Rprofile b/R/.Rprofile index c993020..1994dbb 100644 --- a/R/.Rprofile +++ b/R/.Rprofile @@ -2,7 +2,7 @@ options("width"=160) # wide display with multiple monitors options("digits.secs"=3) # show sub-second time stamps r <- getOption("repos") # hard code the AU mirror for CRAN -r["CRAN"] <- "http://cran.csiro.au" +r["CRAN"] <- "https://cran.csiro.au" options(repos = r) rm(r) -- 2.30.2