Fix windows build

When setting windows env variables, we cannot use quotes because they
are part of the values.
This commit is contained in:
Wojtek Mach 2024-06-21 13:25:23 +02:00
parent df43a07924
commit e299cc9aba
2 changed files with 4 additions and 4 deletions

View file

@ -10,8 +10,8 @@ goto continue
set ELIXIR_ERL_OPTIONS=!ELIXIR_ERL_OPTIONS! -epmd_module Elixir.Livebook.EPMD -start_epmd false -erl_epmd_port 0
:continue
set RELEASE_MODE="interactive"
set RELEASE_DISTRIBUTION="none"
set RELEASE_MODE=interactive
set RELEASE_DISTRIBUTION=none
set MIX_ARCHIVES=!RELEASE_ROOT!\vendor\archives
set MIX_REBAR3=!RELEASE_ROOT!\vendor\rebar3

View file

@ -9,8 +9,8 @@ goto continue
set ELIXIR_ERL_OPTIONS=!ELIXIR_ERL_OPTIONS! -epmd_module Elixir.Livebook.EPMD -start_epmd false -erl_epmd_port 0
:continue
set RELEASE_MODE="interactive"
set RELEASE_DISTRIBUTION="none"
set RELEASE_MODE=interactive
set RELEASE_DISTRIBUTION=none
if defined LIVEBOOK_NODE set RELEASE_NODE=!LIVEBOOK_NODE!
if defined LIVEBOOK_COOKIE set RELEASE_COOKIE=!LIVEBOOK_COOKIE!