aboutsummaryrefslogtreecommitdiffstats
path: root/priv/templates/bin_windows
diff options
context:
space:
mode:
authorTristan Sloughter <[email protected]>2016-08-24 12:44:03 -0700
committerGitHub <[email protected]>2016-08-24 12:44:03 -0700
commit766a2fb0c1724193a5846c3baee5d7f17f343ac5 (patch)
tree01840c574888ee84a7aaaa2e6cda7c5422e8dd81 /priv/templates/bin_windows
parentf2877a2dc9513c7f98c8a962798379c5c89f4246 (diff)
parent77b8e9202715d526b1bae06b4a8a7882e501dfdc (diff)
downloadrelx-766a2fb0c1724193a5846c3baee5d7f17f343ac5.tar.gz
relx-766a2fb0c1724193a5846c3baee5d7f17f343ac5.tar.bz2
relx-766a2fb0c1724193a5846c3baee5d7f17f343ac5.zip
Merge pull request #479 from emtenet/add-boot-varv3.21.0
Fix for #478 Boot variable $ERTS_LIB_DIR not supplied in Windows scripts
Diffstat (limited to 'priv/templates/bin_windows')
-rw-r--r--priv/templates/bin_windows3
1 files changed, 2 insertions, 1 deletions
diff --git a/priv/templates/bin_windows b/priv/templates/bin_windows
index fa1c2cc..06303f5 100644
--- a/priv/templates/bin_windows
+++ b/priv/templates/bin_windows
@@ -34,7 +34,8 @@ cd %rootdir%
@echo Rootdir=%converted_rootdir% >> "%erl_ini%"
:: Start the release in an `erl` shell
-@"%erl%" %erl_opts% %sys_config% -boot "%boot_script%" %*
+@set boot=-boot "%boot_script%" -boot_var RELEASE_DIR "%release_root_dir%"
+@"%erl%" %erl_opts% %sys_config% %boot% %*
@goto :eof