Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

language change in remove_ghqc_configuration from customizing informa… #11

Merged
merged 2 commits into from
Oct 31, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
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
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Package: ghqc
Title: Manage QC via GitHub Issues using Shiny Apps
Version: 0.1.4
Version: 0.1.5
Authors@R: c(
person("Anne", "Zheng", email = "[email protected]", role = c("aut")),
person("Jenna", "Johnson", email = "[email protected]", role = c("aut")),
Expand Down
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# ghqc

# ghqc 0.1.5

- language change in `remove_ghqc_configuration` from "customizing information" to "custom configuration"

# ghqc 0.1.4

- Changes `install_dev_ghqc` to `install_dev_ghqcapp`
Expand Down
6 changes: 3 additions & 3 deletions R/info_repo.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,12 +42,12 @@ download_ghqc_configuration <- function(info_path = ghqc_infopath(), .force = FA
#'
#' @export
remove_ghqc_configuration <- function(info_path = ghqc_infopath()) {
cli::cli_inform("Removing downloaded customizing information in {info_path}...")
cli::cli_inform("Removing downloaded custom configuration in {info_path}...")
tryCatch({
if (fs::dir_exists(info_path)) fs::dir_delete(info_path)
cli::cli_alert_success("Customizing information in {info_path} successfully removed")
cli::cli_alert_success("Custom configuration in {info_path} successfully removed")
}, error = function(e) {
cli::cli_abort("Customizing information in {info_path} not removed due to {e$message}")
cli::cli_abort("Custom configuration in {info_path} not removed due to {e$message}")
})
info_path
}
Expand Down
Loading