fix: pass NULL to set_codename() which requires an explicit argument
All checks were successful
ci/crow/cron/process-updates-ubuntu-2204-arm64 Pipeline was successful

This commit is contained in:
Patrick Schratz 2026-04-17 18:55:40 +02:00
commit 87d3f54b21
Signed by: pat-s
GPG key ID: 3C6318841EF78925

View file

@ -19,7 +19,7 @@ arch = Sys.getenv("ARCH")
# target: alpine-322, ubuntu-2404, redhat-9, etc.
platform = paste(Sys.getenv("OS"), gsub("[.]", "", Sys.getenv("OS_VERSION")), sep = "-")
# Use bincraft's codename detection for S3 paths (e.g. "rhel10" not "redhat10")
codename = bincraft::set_codename()
codename = bincraft::set_codename(NULL)
con <- DBI::dbConnect(
RPostgres::Postgres(),