mirror of
https://github.com/livebook-dev/livebook.git
synced 2025-10-09 21:16:26 +08:00
Start ssl and inets when bundling on windows
This commit is contained in:
parent
355527f7e8
commit
429f6d1394
1 changed files with 3 additions and 0 deletions
|
@ -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"
|
||||
|
|
Loading…
Add table
Reference in a new issue