aboutsummaryrefslogtreecommitdiff
path: root/R
diff options
context:
space:
mode:
authorFelix Cheung <felixcheung_m@hotmail.com>2017-01-16 09:35:52 -0800
committerShivaram Venkataraman <shivaram@cs.berkeley.edu>2017-01-16 09:35:52 -0800
commita115a54399cd4bedb1a5086943a88af6339fbe85 (patch)
tree82b73672a10fc3febfebdd237b9bc51fdc03543d /R
parent12c8c2160829ad8ccdab1741530361cdabdcd39d (diff)
downloadspark-a115a54399cd4bedb1a5086943a88af6339fbe85.tar.gz
spark-a115a54399cd4bedb1a5086943a88af6339fbe85.tar.bz2
spark-a115a54399cd4bedb1a5086943a88af6339fbe85.zip
[SPARK-19232][SPARKR] Update Spark distribution download cache location on Windows
## What changes were proposed in this pull request? Windows seems to be the only place with appauthor in the path, for which we should say "Apache" (and case sensitive) Current path of `AppData\Local\spark\spark\Cache` is a bit odd. ## How was this patch tested? manual. Author: Felix Cheung <felixcheung_m@hotmail.com> Closes #16590 from felixcheung/rcachedir.
Diffstat (limited to 'R')
-rw-r--r--R/pkg/R/install.R4
1 files changed, 2 insertions, 2 deletions
diff --git a/R/pkg/R/install.R b/R/pkg/R/install.R
index 097b7ad4be..cb6bbe5946 100644
--- a/R/pkg/R/install.R
+++ b/R/pkg/R/install.R
@@ -50,7 +50,7 @@
#' \itemize{
#' \item Mac OS X: \file{~/Library/Caches/spark}
#' \item Unix: \env{$XDG_CACHE_HOME} if defined, otherwise \file{~/.cache/spark}
-#' \item Windows: \file{\%LOCALAPPDATA\%\\spark\\spark\\Cache}.
+#' \item Windows: \file{\%LOCALAPPDATA\%\\Apache\\Spark\\Cache}.
#' }
#' @param overwrite If \code{TRUE}, download and overwrite the existing tar file in localDir
#' and force re-install Spark (in case the local directory or file is corrupted)
@@ -239,7 +239,7 @@ sparkCachePath <- function() {
"or restart and enter an installation path in localDir.")
stop(msg)
} else {
- path <- file.path(winAppPath, "spark", "spark", "Cache")
+ path <- file.path(winAppPath, "Apache", "Spark", "Cache")
}
} else if (.Platform$OS.type == "unix") {
if (Sys.info()["sysname"] == "Darwin") {