Commit message (Collapse) | Author | Age | Files | Lines | |
---|---|---|---|---|---|
* | Fix bug that causes appup generation to fail | joewilliams | 2011-03-03 | 1 | -19/+19 |
| | | | | | | | | | This commit changes how rebar determines which apps have been updated, added and removed from a release during appup generation. Rather than use app files it now determines this from the rel file in each version of the release. In addition it fixes a bug reported on the mailing list when generating appups when an application has been added or removed from either release. | ||||
* | Ignore app files not in ebin | joewilliams | 2011-02-25 | 1 | -4/+4 |
| | |||||
* | Clean up trailing whitespace | joewilliams | 2011-02-17 | 1 | -2/+2 |
| | |||||
* | Clean up rebar_appups and rebar_upgrade | joewilliams | 2011-02-17 | 1 | -14/+8 |
| | |||||
* | Fix generate-appups regression (atom vs list) | joewilliams | 2011-02-16 | 1 | -1/+1 |
| | |||||
* | Add 'generate-appups' command | joewilliams | 2011-02-15 | 1 | -0/+185 |
To further support OTP releases I have added support for generating application appup files. These include instructions that systools uses to generate a relup file which contains the low level instructions needed to perform a hot code upgrade. My goal with this module is to produce "good enough" appup files or at least a skeleton to help one get started with something more complex. If an appup file already exists for an application this command will not attempt to create a new one. Usage: $ rebar generate-appups previous_release=/path/to/old/version Generally this command will be run just before 'generate-upgrade'. |