From 83c6959d6139643e6127c0bed575ee599ee42514 Mon Sep 17 00:00:00 2001 From: eitsupi Date: Mon, 29 Apr 2024 13:35:06 +0000 Subject: [PATCH] build: fix the regex to ensure remove old extra docker-bake.json --- build/scripts/clean-files.R | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/scripts/clean-files.R b/build/scripts/clean-files.R index 7abd7115..a19a3372 100644 --- a/build/scripts/clean-files.R +++ b/build/scripts/clean-files.R @@ -26,5 +26,5 @@ fs::dir_ls(path = "dockerfiles", regexp = r"((\d+\.){3}Dockerfile)") |> # Clean up docker-bake.json files -fs::dir_ls(path = "bakefiles", regexp = r"((\d+\.){3}docker-bake.json)") |> +fs::dir_ls(path = "bakefiles", regexp = r"((\d+\.){3}(extra\.)?docker-bake.json)") |> remove_unsupported_files(supported_versions)