quotes
This commit is contained in:
parent
1ad38f05e7
commit
135c5ca696
1 changed files with 1 additions and 1 deletions
|
|
@ -42,7 +42,7 @@ store_build_metadata <- function(
|
|||
} else if (nrow(existing_entries) >= 1 && force) {
|
||||
cli::cli_alert_info("{.fun store_build_metadata}: Force overwriting build metadata for {.field {package_name}} {.field {tag}} because {.code force = TRUE} was set.")
|
||||
|
||||
dbExecute(con, sprintf("UPDATE single_builds SET build_timestamp = %s WHERE package_name = %s and tag = %s", format(Sys.time(), "%Y-%m-%d %H:%M:%S"), package_name, tag))
|
||||
dbExecute(con, sprintf("UPDATE single_builds SET build_timestamp = '%s' WHERE package_name = '%s' and tag = '%s'", format(Sys.time(), "%Y-%m-%d %H:%M:%S"), package_name, tag))
|
||||
}
|
||||
|
||||
# Close the SQLite connection
|
||||
|
|
|
|||
Loading…
Reference in a new issue