Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-07-24 | Don't use builtin status hook as default | Luis Rascao | |
Let people define their own when they want to. | |||
2017-07-20 | Don't fail status script command if empty | Luis Rascao | |
2017-07-06 | Merge pull request #598 from lrascao/otp20v3.23.1 | Luis Rascão | |
Add OTP20 support | |||
2017-07-05 | Add OTP20 support | Luis Rascao | |
2017-07-05 | Merge pull request #597 from ferd/bin_windows-path-escape | Luis Rascão | |
Fixing windows paths for bin scripts | |||
2017-07-05 | Fixing windows paths for bin scripts | Fred Hebert | |
The syntax for proper path handling when the path may contain parentheses (such as C:\Program Files (x86)\...) requires quoting the entire assignment expression: set "var=%val%" any other way of doing it may interpret the parentheses and cause failures. | |||
2017-06-08 | Merge pull request #594 from yaoshimax/master | Luis Rascão | |
Rename gb_tree:tree to gb_trees:tree | |||
2017-06-08 | rename gb_tree:tree to gb_trees:tree | Yoshikazu Aoshima | |
2017-06-07 | Merge pull request #593 from bmodra/master | Luis Rascão | |
Windows bat file has an error, causing upgrade to not work | |||
2017-06-06 | when calling the new install_upgrade.escript, the first parameter needs to ↵ | Brian Modra | |
be 'install' or 'unpack' | |||
2017-05-24 | Merge pull request #592 from ruanpienaar/masterv3.23.0 | Luis Rascão | |
Update README.md | |||
2017-05-24 | Update README.md | Ruan Pienaar | |
2017-05-15 | Merge pull request #591 from lrascao/feature/travis_OTP19.3 | Tristan Sloughter | |
Have Travis run on latest OTP19.3 | |||
2017-05-15 | Merge pull request #590 from lrascao/feature/extended_start_script_status | Tristan Sloughter | |
Feature/extended start script status | |||
2017-05-15 | Add custom status hook to extended script | Luis Rascao | |
Provide a status command to start script which, by default, runs a builtin hook that simply prints which applications are running in the node. This hook can then be customized to print whatever the user wants by adding {status, [{custom, "path/to/hook"}]} to already existing extended_start_script_hooks. | |||
2017-05-15 | Ensure mustache does not html escape hook invocations | Luis Rascao | |
2017-05-15 | Have Travis run on latest OTP19.3 | Luis Rascao | |
2017-05-15 | Merge pull request #568 from talentdeficit/patch-1 | Luis Rascão | |
add osx configuration to .travis.yml | |||
2017-05-15 | add osx configuration to .travis.yml | alisdair sullivan | |
2017-05-14 | Merge pull request #585 from lrascao/fix/rewrite_otp_apps | Luis Rascão | |
Only ensure kernel,stdlib for empty dep apps | |||
2017-05-12 | Merge pull request #589 from essen/relups-dont-need-compiler | Luis Rascão | |
Don't require compiler in the release for relups | |||
2017-05-12 | Don't require compiler in the release for relups | Loïc Hoguin | |
2017-05-09 | Merge pull request #588 from djnym/chmod-overlay | Luis Rascão | |
Add the ability to chmod files in the overlay. | |||
2017-05-08 | Add the ability to chmod files in the overlay. | Anthony Molinaro | |
Two types are supported, direct chmoding, like {chmod, 8#00700, "path/to/file/maybe/with/{{templates}}" } or templating the permission where you have a template var like {file_perm, 8#00700} and an overlay {chmod, "{{file_perm}}","path/to/file/maybe/with/{{templates}}" } | |||
2017-04-09 | Only ensure kernel,stdlib for empty dep apps | Luis Rascao | |
Do not try and ensure them for every app, there are some OTP apps that only require kernel and there's really no point in rewriting those. | |||
2017-03-20 | Merge pull request #567 from ↵v3.22.4v3.22.3 | Tristan Sloughter | |
lrascao/feature/empty_application_apps_silently_skipped Ensure stdlib,kernel as application dependencies | |||
2017-03-20 | Ensure stdlib,kernel as application dependencies | Luis Rascao | |
Make this dependency explicit as it was causing apps with empty application lists to not be included in the generated release. | |||
2017-03-14 | Merge pull request #579 from lrascao/fix/osx_readlink | Tristan Sloughter | |
Fix OSX readlink | |||
2017-03-14 | Merge pull request #563 from lrascao/feature/replace_os_vars_app_config_test | Tristan Sloughter | |
Only use multi-node sys.config if requested when replacing OS vars | |||
2017-03-14 | Merge pull request #575 from lrascao/feature/no_debug_info | Tristan Sloughter | |
Don't drop debug info on default build | |||
2017-03-12 | Fix OSX readlink | Luis Rascao | |
It does not support the -f option. | |||
2017-03-11 | Only use multi-node sys.config if requested when replacing OS vars | Luis Rascao | |
When replacing OS vars only create multi-node sys.config files (ie. filenames containing the node name) only if explicitly requested. This is necessary because inclusion of other config files inside of sys.config is only allowed if the file is actually called sys.config and nothing else. | |||
2017-03-11 | Don't drop debug info on default build | Luis Rascao | |
Drop it only when generating relx escript. | |||
2017-03-09 | Merge pull request #574 from lrascao/feature/drop_export_all | Tristan Sloughter | |
Drop use of export_all erlc directive | |||
2017-02-27 | Drop use of export_all erlc directive | Luis Rascao | |
Starting from OTP20 this will trigger a warning, since we use the warnings_as_errors the build would fail when using this OTP release onwards. | |||
2017-02-02 | Merge pull request #559 from lrascao/feature/fix_crash_on_relup_warning | Tristan Sloughter | |
Feature/fix crash on relup warning | |||
2017-02-01 | Merge pull request #565 from lrascao/feature/fix_read_only_include_erts | Tristan Sloughter | |
Don't rewrite app files if contents are the same | |||
2017-02-01 | Don't crash on warnings emitted during relup | Luis Rascao | |
Make use of warnings_on_errors option to exit with error or proceed with just a warning. | |||
2017-01-29 | Don't rewrite app files if contents are the same | Luis Rascao | |
When comparing .app files to check if a rewrite is necessary do so by comparing erlang terms instead of bytes, the original .app might contain comments for example and cause unnecessary rewrites. This proves a problem when dealing with erts .app files that might be read-only at the origin and thus cause a failed release on relx that is uncalled for since there might have been no changes at all. | |||
2017-01-28 | Expose warnings as errors option | Luis Rascao | |
Obtained from command line and saved in the state to be used on situations where we want to error out on warnings explicitly. | |||
2017-01-11 | Merge pull request #560 from tsloughter/otp20 | Luis Rascão | |
upgrade erlware_commons to 1.0.0 for OTP20 support | |||
2017-01-10 | upgrade erlware_commons to 1.0.0 for OTP20 support | Tristan Sloughter | |
2017-01-03 | Merge pull request #557 from lrascao/feature/longname_release_test | Tristan Sloughter | |
Add test coverage for long node name releases | |||
2017-01-03 | Add test coverage for long node name releases | Luis Rascao | |
2016-12-27 | Merge pull request #553 from lrascao/feature/fix_longname_releasesv3.22.2v3.22.1 | Tristan Sloughter | |
Obtain release node name from Erlang VM instead of OS | |||
2016-12-18 | Obtain release node name from Erlang VM instead of OS | Luis Rascao | |
2016-12-17 | Merge pull request #551 from BakoBako/assembler-hooks-rm-rebar-log | Luis Rascão | |
Replace rebar_log in assembler | |||
2016-12-17 | Replace rebar_log calls to enable relx to build extended script with ↵ | Aleksandar Markovski | |
builders other then rebar(Erlang.mk) | |||
2016-11-27 | Merge pull request #548 from tsloughter/ec-0.22v3.22.0 | Luis Rascão | |
upgrade erlware_commons | |||
2016-11-27 | upgrade erlware_commons | Tristan Sloughter | |