Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-02-09 | Remove destination start_clean.sh before copying, since with R16 it is 0444, ↵ | Jordan Wilberding | |
which makes the write fail. Fixes #120 | |||
2014-02-09 | Updated erlydtl dep to a tagged version, since lastest version breaks API, ↵ | Jordan Wilberding | |
thereby breaking dialyzer tests | |||
2014-01-27 | Run the node embedded mode when in foreground | Ali Sabil | |
2014-01-27 | set ERL_LIBS when running console | console_clean | console_boot | Ali Sabil | |
2014-01-22 | Merge pull request #112 from tsloughter/mvoe_nodetool_install_upgrade | Eric Merritt | |
mv nodetool and install_upgrade script to bin dir, so no need to incl erts | |||
2014-01-22 | Merge pull request #113 from tsloughter/dev_mode_sys_config | Eric Merritt | |
properly handle config files and switching on/off dev_mode | |||
2014-01-21 | properly handle config files and switching on/off dev_mode | Tristan Sloughter | |
2014-01-21 | Merge pull request #109 from tsloughter/verbose_opt_fix | Eric Merritt | |
don't output release successfully created if verbose option is 0 | |||
2014-01-18 | Merge pull request #111 from tsloughter/config_output_dir | Eric Merritt | |
add config option for output_dir, currently only a cmd arg | |||
2014-01-18 | Merge pull request #110 from tsloughter/console_clean | Eric Merritt | |
fix path to start_clean in console_clean start script option | |||
2014-01-18 | mv nodetool and install_upgrade script to bin dir, so no need to incl erts | Tristan Sloughter | |
2014-01-18 | add config option for output_dir, currently only a cmd arg | Tristan Sloughter | |
2014-01-18 | fix path to start_clean in console_clean start script option | Tristan Sloughter | |
2014-01-18 | don't output release successfully created if verbose option is 0 | Tristan Sloughter | |
2013-12-03 | Add option to skip release discovery | Konrad Kaplita | |
`rlx_prv_discover` provider recursively scans all directories in `lib_dirs` list looking for `*.app` and `*.rel` files. This commit adds an option `disable_rel_discovery` to skip searching for `*.rel` files when we know there aren't any. This speeds up release generation with a lot of dependencies on the `libs_dir` list significantly and reduces total release generation time in half. | |||
2013-11-22 | Merge pull request #95 from josevalim/jv-default-releasev0.5.2 | Eric Merritt | |
Properly detect the default release and fail on conflicts | |||
2013-11-22 | Properly detect the default release and fail on conflicts | José Valim | |
Closes #93 | |||
2013-11-18 | Support wildcards in lib dirs | José Valim | |
Wildcards are supported in both lib_dirs in config files as well via the -l command line option. | |||
2013-10-28 | Merge pull request #89 from ericbmerritt/master | Jordan Wilberding | |
support using the original app vsn as a string not the parsed vsn | |||
2013-10-28 | support using the original app vsn as a string not the parsed vsn | Eric | |
2013-10-25 | Don't ignore -d command line argument. | Martin Schürrer | |
2013-10-22 | improve error message for missing upfrom release | Tristan Sloughter | |
2013-10-22 | remove v for version shorthand since it is used for relvsn | Tristan Sloughter | |
2013-10-21 | patch for exception: no match of right hand side value | Łukasz Biedrycki | |
2013-10-18 | add extend to release definition. This closes #16 | Tristan Sloughter | |
2013-10-16 | add include_src option to config file, default true. This closes #15 | Tristan Sloughter | |
2013-10-16 | fix load overlay to support filename not in a list. This closes #74 | Tristan Sloughter | |
2013-10-15 | add a dev mode that symlinks the release instead of copying it | Eric | |
This should only ever be used for development, however it makes it very, very nice to be able to simple recompile a project without recopying it to try new things. | |||
2013-10-15 | ignore empty list of overlay vars to fix unneeded warning | Tristan Sloughter | |
2013-10-15 | add optoin to use custom system_libs dir. This closes #64 | Tristan Sloughter | |
2013-10-15 | Merge pull request #71 from evax/script_update_on_upgrade | Tristan Sloughter | |
Ensure scripts are updated on upgrade for cold starts | |||
2013-10-15 | Merge pull request #70 from evax/erts_include_fixes | Tristan Sloughter | |
Fixes for erts_include | |||
2013-10-15 | Ensure scripts are updated on upgrade for cold starts | Evax Software | |
2013-10-15 | Use the start_clean boot file for remote console | Evax Software | |
2013-10-15 | Reuse generated erts directory in tar command | Evax Software | |
2013-10-14 | remove rlx log and use ec_cmd_log instead | Eric | |
2013-10-12 | add overlay_vars command line arg | Tristan Sloughter | |
2013-10-12 | support list of overlay_vars files. This closes #4 | Tristan Sloughter | |
2013-10-10 | fix non-path includes to be include instead of include_lib | Tristan Sloughter | |
2013-10-07 | include relx header with include instead of include_lib | Tristan Sloughter | |
2013-09-30 | Fixed REMSH var to be properly defined in generated runner bash script. ↵ | Nick Clark | |
Cleaned up instances of ERTS_DIR/bin to use BINDIR instead. | |||
2013-09-28 | do not include erts in tar if include_erts is false | Tristan Sloughter | |
2013-09-28 | warn, not error, on bad app during discovery provider | Tristan Sloughter | |
2013-09-23 | Fix search of vm.args | Slava Yurin | |
2013-09-20 | replace confusing disable-default-libs option with default-libs true or false | Tristan Sloughter | |
2013-09-20 | Ensure exit codes propagate properly during upgrades | RJ | |
2013-09-20 | Support upgrade and downgrade between versions | RJ | |
The "bin/RELNAME install" command now handles upgrading and downgrading. It unpacks and installs new versions as needed, or just sets existing releases as current/permanent as needed. I renamed from "bin/RELNAME upgrade" because it handles downgrades too. "upgrade" and "downgrade" are now synonyms for "install" Additionally, when installing a new to-be-unpacked version, you can say: bin/RELNAME install 0.1.1/beat OR just: bin/RELNAME install 0.1.1 in which case the /RELNAME part is added automatically. This is to keep the version spec for downgrades the same as for new upgrades. This is fully backwards compatible with the existing "upgrade" command. | |||
2013-09-19 | create RELEASES file and include tarball so downgrade to initial release works | Tristan Sloughter | |
2013-09-19 | add -v/--version cli option | Tristan Sloughter | |
2013-09-19 | add -p for setting code paths | Tristan Sloughter | |