We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c526a32 commit 48ca63dCopy full SHA for 48ca63d
lib/package/macos.ex
@@ -360,6 +360,11 @@ defmodule Desktop.Deployment.Package.MacOS do
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)
363
+ |> IO.inspect(label: "Application.ensure_all_started(:public_key)")
364
+
365
+ Application.spec(:public_key) |> IO.inspect(label: "Application.spec(:public_key)")
366
+ Application.app_dir(:public_key) |> IO.inspect(label: "Application.app_dir(:public_key)")
367
368
cert_der = List.keyfind!(:public_key.pem_decode(cert), :Certificate, 0)
369
370
:public_key.der_decode(:Certificate, elem(cert_der, 1))
0 commit comments