Skip to content

Commit

Permalink
fix: rename the option name to more properly
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed May 12, 2024
1 parent a994c24 commit 2307dde
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/r-dependent-packages/devcontainer-feature.json
Original file line number Diff line number Diff line change
Expand Up @@ -25,12 +25,12 @@
"default": "auto",
"description": "Version of pak to install. By default, the stable version is installed if needed."
},
"manifestPath": {
"manifestRoot": {
"type": "string",
"default": "DESCRIPTION",
"description": "The path of DESCRIPTION file recording the dependent R packages. Passed to the `root` argument of the `pak::local_install_deps()` function.",
"description": "The root path of the DESCRIPTION file recording the dependent R packages. Passed to the `root` argument of the `pak::local_install_deps()` function.",
"proposals": [
"DESCRIPTION"
"."
]
},
"additionalRepositories": {
Expand Down
2 changes: 1 addition & 1 deletion src/r-dependent-packages/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

WHEN=${WHEN:-"postCreate"}
PAK_VERSION=${PAKVERSION:-"auto"}
ROOT=${MANIFESTPATH:-"DESCRIPTION"}
ROOT=${MANIFESTROOT:-"."}
ADDITIONAL_REPOSITORIES=${ADDITIONALREPOSITORIES:-""}
DEPENDENCIES=${DEPENDENTTYPES:-"all"}

Expand Down

0 comments on commit 2307dde

Please sign in to comment.