From: Frederik Vanrenterghem Date: Tue, 14 Apr 2020 11:00:19 +0000 (+0800) Subject: Use secure URL for CRAN. X-Git-Url: http://git.vanrenterghem.biz/Dotty.git/commitdiff_plain/b05deaf801081cdaca15a8eac692a517f32ac02f Use secure URL for CRAN. --- 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)