Skip to content

Commit 62124c8

Browse files
committed
fix bug with curly braces in error
1 parent cfc4947 commit 62124c8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/lib.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -203,7 +203,7 @@ pgrs <- function(resp) {
203203
if (isTRUE(status_message == "success")) {
204204
cli::cli_progress_message("{cli::col_green(cli::symbol$tick)} success!")
205205
} else if (purrr::pluck_exists(s, "error")) {
206-
cli::cli_abort(purrr::pluck(s, "error"))
206+
cli::cli_abort("{purrr::pluck(s, \"error\")}")
207207
} else {
208208
cli::cli_progress_step(purrr::pluck(s, "status"), .envir = the)
209209
}

0 commit comments

Comments
 (0)