Skip to content

Commit

Permalink
Fix failing package builds
Browse files Browse the repository at this point in the history
  • Loading branch information
kylewlacy committed Sep 28, 2024
1 parent 987d8c4 commit f9e2929
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 3 additions & 1 deletion packages/eza/project.bri
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ export const project = {

const source = Brioche.download(
`https://github.com/eza-community/eza/archive/refs/tags/v${project.version}.tar.gz`,
).unarchive("tar", "gzip");
)
.unarchive("tar", "gzip")
.peel();

export default function (): std.Recipe<std.Directory> {
return cargoBuild({
Expand Down
4 changes: 3 additions & 1 deletion packages/ruff/project.bri
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ export const project = {

const source = Brioche.download(
`https://github.com/astral-sh/ruff/archive/refs/tags/${project.version}.tar.gz`,
).unarchive("tar", "gzip");
)
.unarchive("tar", "gzip")
.peel();

export default function (): std.Recipe<std.Directory> {
return cargoBuild({
Expand Down

0 comments on commit f9e2929

Please sign in to comment.