We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c849271 commit 9e2aee7Copy full SHA for 9e2aee7
R/snapshot-github.R
@@ -15,7 +15,7 @@
15
#' @export
16
snapshot_download_gh <- function(repository, run_id, dest_dir = ".") {
17
check_string(repository)
18
- check_number_whole(run_id)
+ check_string(run_id)
19
check_string(dest_dir)
20
21
check_installed("gh")
@@ -45,7 +45,7 @@ snap_download_hint <- function() {
45
run_id <- Sys.getenv("GITHUB_RUN_ID")
46
47
sprintf(
48
- "* Call `snapshot_download_gh(\"%s\", %s)` to download the snapshots from GitHub.\n",
+ "* Call `snapshot_download_gh(\"%s\", \"%s\")` to download the snapshots from GitHub.\n",
49
repository,
50
run_id
51
)
0 commit comments