Skip to content

Commit

Permalink
Fix pubkey_os_cacerts:load() on DragonFly
Browse files Browse the repository at this point in the history
Fixes an exception thrown when running "mix setup" on Elixir
1.18.0-dev:

    ** (EXIT from #PID<0.93.0>) an exception was raised:
	** (MatchError) no match of right hand side value:
           {:error, {:enotsup, {:unix, :dragonfly}}}
  • Loading branch information
mneumann committed Aug 8, 2024
1 parent a9c6285 commit 071c801
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/public_key/src/pubkey_os_cacerts.erl
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,8 @@ load() ->
load(bsd_paths(), undefined);
{unix, freebsd} ->
load(bsd_paths(), undefined);
{unix, dragonfly} ->
load(bsd_paths(), undefined);
{unix, netbsd} ->
load(bsd_paths(), undefined);
{unix, sunos} ->
Expand Down

0 comments on commit 071c801

Please sign in to comment.