aboutsummaryrefslogtreecommitdiffstats
AgeCommit message (Collapse)Author
2019-08-15Allow for API callers to define arbitrary overlay variablesGuilherme Andrade
2019-08-13Merge pull request #747 from arcusfelis/template-redefined-variableTristan Sloughter
Correctly render redefined variable
2019-08-13Merge pull request #746 from tsloughter/extend-vsnTristan Sloughter
support setting the version of release to be extended
2019-08-13support including the version in name of release to extendTristan Sloughter
2019-08-12Correctly render redefined variableMikhail Uvarov
Rendering of variables behaves differently for already defined variables. Values of such variables are rendered in the wrong order, ignoring any variables above from the same file.
2019-08-11drop timetrapsTristan Sloughter
2019-08-11always use cirrus compute creditsTristan Sloughter
2019-06-29Merge pull request #734 from vicbaz/masterTristan Sloughter
Handle multiple tokens
2019-06-28Handle multiple tokensVictor
For example: -env Variable Value -pa Dir1 Dir2 ...
2019-06-21Merge pull request #730 from venimus/fix-windows-release-path-quotingLuis Rascão
Fix path variables quoting for Windows
2019-06-21Merge pull request #735 from saleyn/windirLuis Rascão
Fix directory delimiting
2019-06-21Fix directory delimitingSerge Aleynikov
2019-06-12Cookie and hostname should not be quotedIvaylo Badinov
2019-06-11Merge pull request #727 from tsloughter/overlay-top-levelTristan Sloughter
quick fix for overlay that copies to top level of release
2019-06-11Fix path variables quoting for WindowsIvaylo Badinov
2019-06-01quick fix for overlay that copies to top level of releaseTristan Sloughter
2019-06-01Merge pull request #726 from tsloughter/rm-debugv3.32.1Tristan Sloughter
remove debug io:format
2019-06-01bump providers packageTristan Sloughter
2019-06-01remove debug io:formatTristan Sloughter
2019-05-27Merge pull request #724 from venimus/findstr-pathv3.32.0Tristan Sloughter
Fix "'findstr' is not recognized as ..."
2019-05-27Merge pull request #719 from escarabelg/patch-1Tristan Sloughter
change '' to ``. Bug windows 7+
2019-05-27Merge pull request #722 from tsloughter/new-start-cleanTristan Sloughter
include apps in start_clean release but don't load in console_clean
2019-05-27Fix "'findstr' is not recognized as ..."Ivaylo Badinov
Make sure findstr is discoverable (cherry picked from commit 88481962ead6057c1be9658ee50b1131b664dcc4)
2019-05-20Merge pull request #667 from ElectronicRU/overlay-wildcardsTristan Sloughter
Support wildcards for copy/link to a directory.
2019-05-20Merge pull request #668 from ElectronicRU/goals_optionTristan Sloughter
Make {goals, ...} option add goals to release depsolver.
2019-05-20Merge branch 'master' into goals_optionTristan Sloughter
2019-05-20Merge pull request #676 from velimir/providers-apiTristan Sloughter
allow specify additional providers via api and cli calls
2019-05-20Merge pull request #715 from gliush/fix-eunit-testsTristan Sloughter
Fix eunit tests and add them to the CI pipeline
2019-05-20Revert dependencies order in unit testsIvan 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-18include apps in start_clean release but don't load in console_cleanTristan Sloughter
2019-05-17Merge pull request #718 from tsloughter/git-refTristan Sloughter
add support for git ref and file content as app version
2019-05-17add support for git ref and file content as app versionTristan Sloughter
2019-05-17Merge pull request #706 from erlware/try-cirrusTristan Sloughter
try cirrus ci
2019-05-17increase timetrap for otp 22try-cirrusTristan Sloughter
2019-05-17add otp 22 to cirrus test matrixTristan Sloughter
2019-05-15change '' to ``. Bug windows 7+Guilherme Escarabel
2019-05-14remove travis and circleTristan Sloughter
2019-05-14increase timetrapTristan Sloughter
2019-05-14try with compute creditsTristan Sloughter
2019-05-13see if others pass without this oneTristan Sloughter
2019-05-13try to fix failing testTristan Sloughter
2019-05-13add testing of otp 18 19 and 20Tristan Sloughter
2019-04-18Merge pull request #714 from tolbrino/tb-fix-windows-linksTristan Sloughter
Fix link handling on Windows
2019-04-16Use recursive copy as last fallback on all platformsTino Breddin
2019-04-16Do not create a junction (soft link) for filesemtenet
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-16Remove 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-14add dist name and cookie to ERL_FLAGS for nodetool (#712)v3.31.0Tristan Sloughter
* remove deprecated hex field from .app.src * start nodetool dist node in erl flags
2019-04-12include dist and epmd arguments from vm.args in remote shell and nodetool ↵v3.30.0Tristan Sloughter
calls (#710) * remove unused VM_ARGS variable * include dist args in extended start scripts other calls
2019-04-12don'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-05Refactor 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