docs(vignette): point install_github at ThinkR-open instead of colinfay#103
Merged
VincentGuyader merged 1 commit intomasterfrom May 6, 2026
Merged
Conversation
The Getting Started vignette suggested
`remotes::install_github("colinfay/dockerfiler")`, which still
resolves to a stale fork. The package has lived under
ThinkR-open/dockerfiler for years; a CRAN reviewer or new user
following the install command would otherwise pick up the wrong
package.
There was a problem hiding this comment.
Pull request overview
Updates the “Getting started” vignette to install dockerfiler from the current GitHub repository (ThinkR-open/dockerfiler) instead of an outdated fork, preventing new users (and CRAN reviewers) from copy-pasting a stale install command.
Changes:
- Replaces
remotes::install_github("colinfay/dockerfiler")withremotes::install_github("ThinkR-open/dockerfiler")in the installation section of the vignette.
💡 Add Copilot custom instructions for smarter, more guided reviews. Learn how to get started.
Merged
3 tasks
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
The Getting Started vignette has a stale fork reference:
The package lives under
ThinkR-open/dockerfilersince 2021. A CRANreviewer or new user copy-pasting that line would install a stale
fork that has none of the 0.2.x or 0.3.0 features. This is the
single CRAN-blocking documentation issue surfaced by the pre-CRAN
audit (see local prep report).
Test plan
vignettes/dockerfiler.Rmd.R CMD check --as-cran-> 0 errors / 0 warnings / 0 notes(verified locally on
poc/doc-vignette-fork-rename, 2m 38s).Context
Étape 1 / 8 of the 0.3.0 CRAN-prep plan. Subsequent doc polish PRs
will follow as a separate bundled PR (étape 2).