From 72a160b920a466060251fbf1918618039679a641 Mon Sep 17 00:00:00 2001 From: Peter DeWitt Date: Wed, 8 Jan 2025 11:15:51 -0700 Subject: [PATCH] edit file path --- vignettes/articles/python.Rmd | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vignettes/articles/python.Rmd b/vignettes/articles/python.Rmd index f38c806..35a1982 100644 --- a/vignettes/articles/python.Rmd +++ b/vignettes/articles/python.Rmd @@ -33,7 +33,7 @@ if (!virtualenv_exists(envname = "phoenix")) { p <- normalizePath("python") # for how build_site is called locally if (!dir.exists(p)) { - p <- normalizePath("../python") # for how build_site is called in github actions + p <- normalizePath("../../python") # for how build_site is called in github actions } virtualenv_install(envname = "phoenix", packages = p) }