Skip to content

Commit

Permalink
Fix checksum (#83)
Browse files Browse the repository at this point in the history
  • Loading branch information
cocoa-xu committed Mar 10, 2024
1 parent ecccbb7 commit 80aea6b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/mix/tasks/elixir_make.checksum.ex
Original file line number Diff line number Diff line change
Expand Up @@ -57,8 +57,8 @@ defmodule Mix.Tasks.ElixirMake.Checksum do
current_nif_version = "#{:erlang.system_info(:nif_version)}"

case Artefact.current_target_url(config, precompiler, current_nif_version) do
{:ok, target, url} ->
[{{target, current_nif_version}, url}]
{:ok, target, nif_version_to_use, url} ->
[{{target, nif_version_to_use}, url}]

{:error, {:unavailable_target, current_target, error}} ->
recover =
Expand Down

0 comments on commit 80aea6b

Please sign in to comment.