Skip to content

Commit

Permalink
Corrected windows download URL.
Browse files Browse the repository at this point in the history
  • Loading branch information
LTLA committed Dec 10, 2019
1 parent 0f30a7c commit c03d29d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
Package: basilisk
Version: 0.99.0
Version: 0.99.1
Date: 2019-12-10
Title: Freezing Python Versions Inside Bioconductor Packages
Authors@R: c(person("Aaron", "Lun", role=c("aut", "cre", "cph"),
Expand Down
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
if (os %in% c("win64", "win32")) {
arch <- if (os=="win64") "x86_64" else "x86"
inst_file <- sprintf("Anaconda3-%s-Windows-%s.exe", version, arch)
tmploc <- .expedient_download(paste0(base_url, inst_file))
tmploc <- .expedient_download(file.path(base_url, inst_file))
inst_args <- sprintf(" /InstallationType=JustMe /RegisterPython=0 /S /D=%s", normalizePath(dest_path, mustWork=FALSE))
system2(tmploc, inst_args)

Expand Down

0 comments on commit c03d29d

Please sign in to comment.