diff --git a/docs/index.html b/docs/index.html index 8d5632ba..e38b7f63 100644 --- a/docs/index.html +++ b/docs/index.html @@ -85,7 +85,7 @@ Require -

A simple package for reproducible package management in R. Built on top of git2r and archivist, this package aims at making high-level, robust, machine and OS independent tools for making deeply reproducible package management in R. This extends beyond the package management utilities of packrat and checkpoint by including all in one management for packages in R focused around a single function, Require.

+

A simple package for reproducible package management in R. This is different than other approaches to package management such as packrat, checkpoint, and renv, by including all-in-one management for packages in R focused around a single function, Require.

diff --git a/docs/pkgdown.yml b/docs/pkgdown.yml index 17b69ded..a6e25593 100644 --- a/docs/pkgdown.yml +++ b/docs/pkgdown.yml @@ -2,7 +2,7 @@ pandoc: 2.7.3 pkgdown: 1.5.1 pkgdown_sha: ~ articles: [] -last_built: 2020-08-17T19:58Z +last_built: 2020-08-17T20:03Z urls: reference: https://Require.predictiveecology.org/reference article: https://Require.predictiveecology.org/articles diff --git a/docs/reference/checkPath.html b/docs/reference/checkPath.html index 40c4444c..d18803d7 100644 --- a/docs/reference/checkPath.html +++ b/docs/reference/checkPath.html @@ -188,7 +188,7 @@

Examp tmpdir <- file.path(tempdir(), "example_checkPath") dir.exists(tmpdir) ## FALSE

#> [1] FALSE
tryCatch(checkPath(tmpdir, create = FALSE), error = function(e) FALSE) ## FALSE
#> [1] FALSE
-checkPath(tmpdir, create = TRUE)
#> [1] "C:/Users/EMCINT~1.L-V/AppData/Local/Temp/Rtmpsl9TyP/example_checkPath"
dir.exists(tmpdir) ## TRUE
#> [1] TRUE
+checkPath(tmpdir, create = TRUE)
#> [1] "C:/Users/EMCINT~1.L-V/AppData/Local/Temp/RtmpG0GNKK/example_checkPath"
dir.exists(tmpdir) ## TRUE
#> [1] TRUE
unlink(tmpdir, recursive = TRUE)
#> [1] FALSE
tryCatch(checkPath(tmpdir, create = FALSE), error = function(e) FALSE) ## FALSE
#> [1] FALSE
-checkPath(tmpdir, create = TRUE)
#> [1] "C:/Users/EMCINT~1.L-V/AppData/Local/Temp/Rtmpsl9TyP/example_checkPath"
dir.exists(tmpdir) ## TRUE
#> [1] TRUE
+checkPath(tmpdir, create = TRUE)
#> [1] "C:/Users/EMCINT~1.L-V/AppData/Local/Temp/RtmpG0GNKK/example_checkPath"
dir.exists(tmpdir) ## TRUE
#> [1] TRUE
unlink(tmpdir, recursive = TRUE)