Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Readme.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ so they're unaffected) since it isn't signed/notarized yet:
$ xattr -d com.apple.quarantine /usr/local/bin/lc
----

=== Homebrew (macOS Apple Silicon, Linux x86_64)
=== Homebrew (macOS Apple Silicon, Linux x86_64, Linux ARM64)

[source,sh]
----
Expand Down Expand Up @@ -366,7 +366,7 @@ $ cd app
$ mise exec -- env MIX_ENV=prod BURRITO_TARGET=<target> mix release lc
----

`<target>` is one of `macos_aarch64`, `linux_x86_64`, or `windows_x86_64`.
`<target>` is one of `macos_aarch64`, `linux_x86_64`, `linux_aarch64`, or `windows_x86_64`.

=== Build the container

Expand Down
2 changes: 1 addition & 1 deletion ci/bump_homebrew_formula.rb
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
version_file = File.join(File.dirname(formula_path), ".version")
content = File.read(formula_path)

%w[macos_aarch64 linux_x86_64].each do |target|
%w[macos_aarch64 linux_x86_64 linux_aarch64].each do |target|
asset = "lc_#{target}.tar.gz"
sha = sha256sums.fetch(asset) { abort "No checksum found for #{asset} in #{sha256sums_path}" }

Expand Down
2 changes: 1 addition & 1 deletion vendor/rubyists-homebrew-tap