Start ssl and inets when bundling on windows

This commit is contained in:
Wojtek Mach 2022-07-25 14:39:18 +02:00
parent 355527f7e8
commit 429f6d1394

View file

@ -6,6 +6,9 @@ defmodule AppBundler.Windows do
@templates_path "#{__ENV__.file}/../../templates"
def bundle(release, options) do
{:ok, _} = Application.ensure_all_started(:ssl)
{:ok, _} = Application.ensure_all_started(:inets)
app_name = options[:name]
app_path = "#{Mix.Project.build_path()}/#{app_name}-win"