| Commit message (Collapse) | Author | Age | Files | Lines |
... | |
|/ / / /
| | | |
| | | |
| | | |
| | | | |
- The configured stuff in rebar3 takes precedence over the ENV
- The env is then chosen
|
|\ \ \ \
| | | | |
| | | | | |
Write rebar3.crashdump on errors
|
| | | | | |
|
| | | | | |
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Fix compile error case when cover compilation
|
| |/ / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Dependent libs is required for some module when cover compiling.
So all dependencies should be available on code path.
This fixes #1148 issue.
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Bugfix for upgrading deps of umbrella apps
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
The previous iteration of the patch worked somewhat by accident. After
digging in and figuring out why the two dep sources are the way they
are, the patch is now properly working with a well-documented
explanatiion inline.
|
| | | | | | |
|
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | |
| | | | | | |
When the operation for an unlock takes place in the config of a umbrella
application, the `unlock' provider does not see the dependency in the
`deps' value of the config (since it only includes the deps at the root
of the project) and ignores these.
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix minor typo in README
|
|/ / / / / / |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
Handle control sequences in formatted errors
|
|/ / / / /
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | |
| | | | | |
Formatted errors can accidentally contain substrings which are control
sequences for io:format/2. This is a naive attempt to handle such cases.
One example is running xref on the following module
(assuming module m does not exist)
```
-module(handle_error).
-export([f/0]).
f() -> m:'bobby~stables'().
```
```
$ rebar3 xref
===> Verifying dependencies...
===> Compiling myapp
===> Running cross reference analysis...
escript: exception error: bad argument
in function io:format/3
called as io:format(<0.23.0>,
"\e[0;31m===> \e[1mWarning: handle_error:f/0 is unused export (Xref)\nWarning: handle_error:f/0 calls undefined function m:bobby~stables/0 (Xref)\n\n\e[0m\e[0m",
[])
in call from rebar3:handle_error/1 (/Users/gomoripeti/git/rebar3/_build/default/lib/rebar/src/rebar3.erl, line 279)
```
|
|\ \ \ \ \
| | | | | |
| | | | | | |
Don't die when source deps with [raw] are used
|
| | |_|/ /
| |/| | |
| | | | |
| | | | |
| | | | | |
This adds support for their format both on the first read and when
looking for modifications to dependencies.
|
|\ \ \ \ \
| |/ / / /
|/| | | | |
Debug log update
|
|/ / / / |
|
|\ \ \ \
| | | | |
| | | | | |
adjust `data_dir_correct` test in ct suite
|
| | | | |
| | | | |
| | | | |
| | | | | |
don't bother checking the profile in the path to the data dir
|
|\ \ \ \ \
| | | | | |
| | | | | | |
filter available package versions individually by buildtools
|
| | | | | | |
|
|\ \ \ \ \ \
| |/ / / / /
|/| | | | | |
deploy escript to travis releases instead of s3
|
| | | | | | |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
Fix path command to consider {deps_dir, "deps"} in rebar.config
|
|/ / / / / / |
|
|\ \ \ \ \ \
| | | | | | |
| | | | | | | |
#1185 fix windows git working directory
|
| | | | | | |
| | | | | | |
| | | | | | | |
fix issue #1185 git working directory issues due to command line options in Windows
|
| |_|_|_|_|/
|/| | | | | |
|
|/ / / / / |
|
|\ \ \ \ \
| |/ / / /
| | | | | |
don't needlessly update the code path twice if no hooks to run
|
| | | | | |
|
|\ \ \ \ \
| | |/ / /
| |/| | | |
don't generated coverage for `extra_src_dirs`
|
|/ / / /
| | | |
| | | |
| | | | |
closes #1057 and #1179
|
|\ \ \ \
| |/ / /
| | | | |
fix otp-19 bootstrap compiling
|
| | | | |
|
|\ \ \ \
| |/ / /
| | | | |
upgrade erlware_commons for OTP-19 fix
|
| | | | |
|
|/ / / |
|
|\ \ \
| |_|/
|/| | |
Fix shell node startup
|
|/ / |
|
|\ \
| | |
| | | |
Add support for xref_ignores
|
| | | |
|
|\ \ \
| | | |
| | | | |
Allows overwrite default cache dir using REBAR_CACHE_DIR
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Instead of reading every time that rebar_dir:global_cache_dir/1 is
called
|
| | | | |
|
| | | | |
|
| | | |
| | | |
| | | |
| | | |
| | | | |
Allows overwrite the default cache directory using the environment
variable REBAR_CACHE_DIR.
|
|\ \ \ \
| | | | |
| | | | | |
Fixes logging from remote shells in rebar3 shell
|
| | |_|/
| |/| |
| | | |
| | | |
| | | | |
Somehow swapping the tty handler once more fixes everything. I guess we
were missing a step somehow.
|