Skip to content

Commit

Permalink
fix pkg_family
Browse files Browse the repository at this point in the history
  • Loading branch information
Azathothas authored Nov 28, 2024
1 parent 4914768 commit 0ed1709
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/healthchecks_housekeeping.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ jobs:
.[] |
"[[bin]]\n" +
"pkg = \"\(.name)\"\n" +
"pkg_family = \"\(.pkg_family)\"\n" +
"pkg_family = \"\(.pkg_family // "" | if . == "" then .name | gsub("\\.no_strip"; "") else . end)\"\n" +
"pkg_name = \"\(.name | gsub("\\.no_strip"; ""))\"\n" +
"description = \"\(.description)\"\n" +
"note = \"\(.note)\"\n" +
Expand All @@ -358,7 +358,7 @@ jobs:
.[] |
"[[base]]\n" +
"pkg = \"\(.name)\"\n" +
"pkg_family = \"\(.pkg_family)\"\n" +
"pkg_family = \"\(.pkg_family // "" | if . == "" then .name | gsub("\\.no_strip"; "") else . end)\"\n" +
"pkg_name = \"\(.name | gsub("\\.no_strip"; ""))\"\n" +
"description = \"\(.description)\"\n" +
"note = \"\(.note)\"\n" +
Expand All @@ -383,7 +383,7 @@ jobs:
.[] |
"[[pkg]]\n" +
"pkg = \"\(.name)\"\n" +
"pkg_family = \"\(.pkg_family)\"\n" +
"pkg_family = \"\(.pkg_family // "" | if . == "" then .name else . end)\"\n" +
"pkg_id = \"\(.bin_id)\"\n" +
"pkg_name = \"\(.bin_name)\"\n" +
"description = \"\(.description)\"\n" +
Expand Down Expand Up @@ -562,7 +562,7 @@ jobs:
.[] |
"[[bin]]\n" +
"pkg = \"\(.name)\"\n" +
"pkg_family = \"\(.pkg_family)\"\n" +
"pkg_family = \"\(.pkg_family // "" | if . == "" then .name | gsub("\\.no_strip"; "") else . end)\"\n" +
"pkg_name = \"\(.name | gsub("\\.no_strip"; ""))\"\n" +
"description = \"\(.description)\"\n" +
"note = \"\(.note)\"\n" +
Expand All @@ -587,7 +587,7 @@ jobs:
.[] |
"[[base]]\n" +
"pkg = \"\(.name)\"\n" +
"pkg_family = \"\(.pkg_family)\"\n" +
"pkg_family = \"\(.pkg_family // "" | if . == "" then .name | gsub("\\.no_strip"; "") else . end)\"\n" +
"pkg_name = \"\(.name | gsub("\\.no_strip"; ""))\"\n" +
"description = \"\(.description)\"\n" +
"note = \"\(.note)\"\n" +
Expand All @@ -612,7 +612,7 @@ jobs:
.[] |
"[[pkg]]\n" +
"pkg = \"\(.name)\"\n" +
"pkg_family = \"\(.pkg_family)\"\n" +
"pkg_family = \"\(.pkg_family // "" | if . == "" then .name else . end)\"\n" +
"pkg_id = \"\(.bin_id)\"\n" +
"pkg_name = \"\(.bin_name)\"\n" +
"description = \"\(.description)\"\n" +
Expand Down

0 comments on commit 0ed1709

Please sign in to comment.