Skip to content

Commit

Permalink
Merge branch 'develop' of github.com:upmaru/pakman into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
zacksiri committed Oct 21, 2023
2 parents 130520d + 5af7b8a commit 07ad8ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
2 changes: 1 addition & 1 deletion lib/pakman/templates/bootstrap/apkbuild.eex
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ pkgname="<%= name %>"
pkgver="<%= version %>"
pkgrel="<%= build %>"
pkgdesc="<%= name %>"
arch="x86_64"
arch="<%= if configuration["architectures"], do: Enum.join(configuration["architectures"], " "), else: "x86_64" %>"
options="<%= Enum.join(configuration["options"], " ") %>"
pkgusers="<%= name %>"
pkggroups="<%= name %>"
Expand Down
4 changes: 4 additions & 0 deletions test/fixtures/rails.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ dependencies:

stack: alpine/3.17

architectures:
- x86_64
- aarch64

build:
destinations:
- '*'
Expand Down

0 comments on commit 07ad8ca

Please sign in to comment.