Skip to content

Commit

Permalink
docs(wiki): fix ordering of the table content
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Apr 29, 2024
1 parent aee06e2 commit 907c72b
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion build/reports/wiki_home.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,12 @@ df_definitions <- fs::dir_ls(
path = "bakefiles",
regexp = r"(.+\.docker-bake.json$)"
) |>
rev() |>
stringr::str_sort(decreasing = TRUE) |>
# Move extra to the end
(\(x) {
cond <- stringr::str_detect(x, "extra")
c(x[!cond], x[cond])
})() |>
purrr::map(.read_bakefile) |>
purrr::list_rbind() |>
dplyr::mutate(
Expand Down

0 comments on commit 907c72b

Please sign in to comment.