Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-08-09 | add configurable timeouts to nodetool | Evan Vigil-McClanahan | |
2019-06-29 | Merge pull request #734 from vicbaz/master | Tristan Sloughter | |
Handle multiple tokens | |||
2019-06-28 | Handle multiple tokens | Victor | |
For example: -env Variable Value -pa Dir1 Dir2 ... | |||
2019-06-21 | Merge pull request #730 from venimus/fix-windows-release-path-quoting | Luis Rascão | |
Fix path variables quoting for Windows | |||
2019-06-21 | Merge pull request #735 from saleyn/windir | Luis Rascão | |
Fix directory delimiting | |||
2019-06-21 | Fix directory delimiting | Serge Aleynikov | |
2019-06-12 | Cookie and hostname should not be quoted | Ivaylo Badinov | |
2019-06-11 | Merge pull request #727 from tsloughter/overlay-top-level | Tristan Sloughter | |
quick fix for overlay that copies to top level of release | |||
2019-06-11 | Fix path variables quoting for Windows | Ivaylo Badinov | |
2019-06-01 | quick fix for overlay that copies to top level of release | Tristan Sloughter | |
2019-06-01 | Merge pull request #726 from tsloughter/rm-debugv3.32.1 | Tristan Sloughter | |
remove debug io:format | |||
2019-06-01 | bump providers package | Tristan Sloughter | |
2019-06-01 | remove debug io:format | Tristan Sloughter | |
2019-05-27 | Merge pull request #724 from venimus/findstr-pathv3.32.0 | Tristan Sloughter | |
Fix "'findstr' is not recognized as ..." | |||
2019-05-27 | Merge pull request #719 from escarabelg/patch-1 | Tristan Sloughter | |
change '' to ``. Bug windows 7+ | |||
2019-05-27 | Merge pull request #722 from tsloughter/new-start-clean | Tristan Sloughter | |
include apps in start_clean release but don't load in console_clean | |||
2019-05-27 | Fix "'findstr' is not recognized as ..." | Ivaylo Badinov | |
Make sure findstr is discoverable (cherry picked from commit 88481962ead6057c1be9658ee50b1131b664dcc4) | |||
2019-05-20 | Merge pull request #667 from ElectronicRU/overlay-wildcards | Tristan Sloughter | |
Support wildcards for copy/link to a directory. | |||
2019-05-20 | Merge pull request #668 from ElectronicRU/goals_option | Tristan Sloughter | |
Make {goals, ...} option add goals to release depsolver. | |||
2019-05-20 | Merge branch 'master' into goals_option | Tristan Sloughter | |
2019-05-20 | Merge pull request #676 from velimir/providers-api | Tristan Sloughter | |
allow specify additional providers via api and cli calls | |||
2019-05-20 | Merge pull request #715 from gliush/fix-eunit-tests | Tristan Sloughter | |
Fix eunit tests and add them to the CI pipeline | |||
2019-05-20 | Revert dependencies order in unit tests | Ivan Glushkov | |
The PR https://github.com/erlware/relx/pull/655 changed the behaviour, while the tests were not fixed. This commit fixes the unit tests. | |||
2019-05-18 | include apps in start_clean release but don't load in console_clean | Tristan Sloughter | |
2019-05-17 | Merge pull request #718 from tsloughter/git-ref | Tristan Sloughter | |
add support for git ref and file content as app version | |||
2019-05-17 | add support for git ref and file content as app version | Tristan Sloughter | |
2019-05-17 | Merge pull request #706 from erlware/try-cirrus | Tristan Sloughter | |
try cirrus ci | |||
2019-05-17 | increase timetrap for otp 22try-cirrus | Tristan Sloughter | |
2019-05-17 | add otp 22 to cirrus test matrix | Tristan Sloughter | |
2019-05-15 | change '' to ``. Bug windows 7+ | Guilherme Escarabel | |
2019-05-14 | remove travis and circle | Tristan Sloughter | |
2019-05-14 | increase timetrap | Tristan Sloughter | |
2019-05-14 | try with compute credits | Tristan Sloughter | |
2019-05-13 | see if others pass without this one | Tristan Sloughter | |
2019-05-13 | try to fix failing test | Tristan Sloughter | |
2019-05-13 | add testing of otp 18 19 and 20 | Tristan Sloughter | |
2019-04-18 | Merge pull request #714 from tolbrino/tb-fix-windows-links | Tristan Sloughter | |
Fix link handling on Windows | |||
2019-04-16 | Use recursive copy as last fallback on all platforms | Tino Breddin | |
2019-04-16 | Do not create a junction (soft link) for files | emtenet | |
When symlink_or_copy/2 cannot use file:make_symlink/2 on Windows due to the user lacking SeCreateSymbolicLinkPrivilege it tries a fall back. Detect the source type and use an appropriate fall back: * junction for directories and, * copy for files. Improve error detection in win32_make_junction/2 and make it repeatable when the target exists | |||
2019-04-16 | Remove dead code of cp_r/2, xcopy_win32/2 and cp_r_win32/2. | emtenet | |
The bulk of the code is hidden behind opposite checks: * os:type() /= {win32, _} in symlink_or_copy/2 * os:type() == {win32, _} in cp_r/2 symlink_or_copy/2 is always using win32_symlink/2 when file:make_symlink/2 fails. | |||
2019-04-14 | add dist name and cookie to ERL_FLAGS for nodetool (#712)v3.31.0 | Tristan Sloughter | |
* remove deprecated hex field from .app.src * start nodetool dist node in erl flags | |||
2019-04-12 | include dist and epmd arguments from vm.args in remote shell and nodetool ↵v3.30.0 | Tristan Sloughter | |
calls (#710) * remove unused VM_ARGS variable * include dist args in extended start scripts other calls | |||
2019-04-12 | don't require a cookie in the start script (#708) | Tristan Sloughter | |
* don't require a cookie in the start script * remove ensure cookie function from windows script * Add updated cookie handling for win32 | |||
2019-04-05 | Refactor creation of .erlang.cookie for use in start/console procedures (#690) | Tino Breddin | |
* Randomize dummy node name The static name used so far would result in name clashing when running the script multiple times in short succession. * Fix find_sys_config routine in win32 extended bin * Remove escaping of double quotes * Fix dummy command syntax * Refactor creation of .erlang.cookie at startup * Fix dummy node logic for win32 | |||
2019-04-03 | split out build task | Tristan Sloughter | |
2019-04-03 | add osx test run | Tristan Sloughter | |
2019-04-03 | try cirrus ci | Tristan Sloughter | |
2019-04-03 | Merge pull request #695 from tolbrino/tb-fix-win32-shift | Luis Rascão | |
Fix parameter shift on win32 for extension commands | |||
2019-04-03 | Fix parameter shift on win32 for extension commands | Tino Breddin | |
2019-04-02 | Store artifacts on Circle CI runs (#704) | Tino Breddin | |