Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
More tweaks
  • Loading branch information
olivroy committed Jun 9, 2024
commit 386aec3ad1e6484063b5196e85a896537351c4ad
6 changes: 5 additions & 1 deletion R/utils-git.R
Original file line number Diff line number Diff line change
Expand Up @@ -211,7 +211,11 @@ challenge_uncommitted_changes <- function(
if (choice == 1) {
return(invisible())
} else {
ui_abort("Uncommitted changes. Please commit before continuing.", call = NULL)
ui_abort(
"Uncommitted changes. Please commit before continuing.",
call = caller_env()
)
return(invisible())
}
}
}
Expand Down