We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5123288 commit 3a3e4b1Copy full SHA for 3a3e4b1
scripts/build_nhsn_archive.R
@@ -117,14 +117,14 @@ update_nhsn_data_raw <- function() {
117
# that have the same ETag. (I don't feel like rederiving AWS S3's ETag field
118
# and computing ahead of time.)
119
delete_df <- delete_duplicates_from_s3_by_etag(config$s3_bucket, config$raw_file_name_prefix, dry_run = FALSE)
120
- cli_inform("Deleted {nrow(delete_df)} duplicate files from S3.")
121
if (nrow(delete_df) > 0) {
+ cli_inform("Deleted {nrow(delete_df)} duplicate files from S3.")
122
cli_inform("Deleted files:")
123
cli_inform(paste0(" - ", delete_df$Key))
124
} else {
125
cli_inform("No duplicate files to delete.")
126
}
127
- cli_inform("Finished downloading NHSN data.")
+ cli_inform("Finished fetching NHSN data.")
128
129
130
#' Process Raw NHSN Data File
0 commit comments