We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 48ca63d commit ea0fd1fCopy full SHA for ea0fd1f
1 file changed
lib/package/macos.ex
@@ -359,7 +359,10 @@ defmodule Desktop.Deployment.Package.MacOS do
359
cert = File.read!(pem_filename)
360
# Test for missing public_key application
361
# ref https://elixirforum.com/t/nerves-key-hub-mix-tasks-fail-because-of-missing-pubkey-pem-module/62821/2
362
- {:ok, _started} = Application.ensure_all_started(:public_key)
+ Mix.ensure_application!(:public_key)
363
+
364
+ {:ok, _started} =
365
+ Application.ensure_all_started(:public_key)
366
|> IO.inspect(label: "Application.ensure_all_started(:public_key)")
367
368
Application.spec(:public_key) |> IO.inspect(label: "Application.spec(:public_key)")
0 commit comments