Tuncer Ayaz
32ddef7158
Remove alt_url support in favor of new features
pirms 13 gadiem
Tuncer Ayaz
e6d5a494b0
Clarify use of git describe
pirms 13 gadiem
Tuncer Ayaz
4ee2f6ea1b
Update README
pirms 13 gadiem
Tuncer Ayaz
dc472bd958
Do not use inherited port options
pirms 13 gadiem
Tuncer Ayaz
b2fdce8879
Use dict() instead of proplist() for shared env
pirms 13 gadiem
joewilliams
d726e598b5
Add support for using -remsh via runner script
pirms 13 gadiem
Ulf Wiger
afffb4895a
Use correct value for file:script SCRIPT binding
pirms 13 gadiem
Francis Joanis
47716a7ed8
Use correctly escaped pipes in usage message
pirms 13 gadiem
Matt Campbell
6f85854414
Improvements to windows node runner script
* Typos and other minor bug fixes
* Add "attach" command (via -remsh)
* Add "upgrade" command to install a hot upgrade package
* Add "upgrade" subcommand to UNIX runner script as well
pirms 13 gadiem
Tuncer Ayaz
9c1a877bbe
Remove gratuitous blank line
pirms 13 gadiem
Ulf Wiger
c3c64c1d70
Fix file:script support
pirms 13 gadiem
Tuncer Ayaz
7c418ed2b4
Add support for target-specific port options
{port_specs, [{".*", "priv/foo.so", ["c_src/foo.c"], [{env, []}]}]}.
pirms 13 gadiem
Tuncer Ayaz
2ae73cc2d3
Add Ulf Wiger to THANKS file
pirms 13 gadiem
Ulf Wiger
b3e9e76f57
Use file:script if a .config.script file present
pirms 13 gadiem
Tuncer Ayaz
fc83f4b961
Apply Tidier suggestion
pirms 13 gadiem
Tuncer Ayaz
aeb3081111
Update getopt.erl
pirms 13 gadiem
Tuncer Ayaz
0e7defaf64
Fix typo in comment (thanks Michael Santos)
pirms 13 gadiem
Tuncer Ayaz
0b8ca933cc
Fix whitespace error
pirms 13 gadiem
joewilliams
bdc1a85239
Add foreground as a runner start option
pirms 13 gadiem
Tuncer Ayaz
7864b81e2d
Update getopt.erl
pirms 13 gadiem
Amit Kapoor
6ada1c24c7
Update filter list for custom xref query
Rebar has support for optional compilers built-in. These compilers might
not be installed causing xref to return errors for the undefined external
function calls query. The updated filter list will catch this error and
act as a nop if they are installed.
pirms 13 gadiem
Tuncer Ayaz
ae178b851b
Fix #209 (Reported-by: Bjorn Bylander)
Use correct ERL_LIBS separator on Windows.
pirms 13 gadiem
Yurin Slava
29d71e356c
simplenode.runner: fix HEART_CMD arguments
pirms 13 gadiem
Yurin Slava
cd1cc6dbee
simplenode.runner: properly quote arguments
bin/<release_name> console -kernel test '[{"a","b"}]' fails, because
when $@ is inserted into CMD [{"a","b"}] is interpreted.
Fix the same issue for 'start' command and quote all arguments.
pirms 13 gadiem
Tuncer Ayaz
4a9dae76a4
Fix #197 by printing 'Entering/Leaving directory'
pirms 13 gadiem
Mike Lazar
cbfabd6073
Remove generation of ps1 script (no longer needed)
pirms 13 gadiem
Tuncer Ayaz
79a580200d
Fix Makefile to not ignore xref return code
pirms 13 gadiem
Tuncer Ayaz
39858c1bf7
Add Amit Kapoor to THANKS file
pirms 13 gadiem
Amit Kapoor
63f1b1d9d5
Use lists:member/2 to check xref results
pirms 13 gadiem
Amit Kapoor
0191806f92
Add support for custom xref queries
The custom queries are configured in rebar.config via the tuple
{xref_queries, [{query(), query_result()},...]}. The implementation
passes the query() string to xref:q and compares the return value with
query_result(). It will result in an error if they do not match.
The following configuration, for example, is the same as running the
xref check undefined_function_calls. It additionally filters
ejabberd_logger:*_msg/4 from the result as these functions are generated
on execution by ejabberd and not available at compile time.
{xref_queries, [{"(XC - UC) || (XU - X - B -
(\"ejabberd_logger\":\".*_msg\"/\"4\"))",[]}]}.
This patch also modifies the build process of this package by running a
custom query instead of doing a diff against a static xref_warning file.
pirms 13 gadiem
joewilliams
26e1252250
add more info to readme
pirms 13 gadiem
Tuncer Ayaz
7bd8cbd8d9
Make error message more descriptive
pirms 13 gadiem
Tuncer Ayaz
a4eceba505
Add Adam Schepis to THANKS file
pirms 13 gadiem
Adam Schepis
03a026f38f
Add support for alternate dependency urls
This change adds the ability to use alternate urls for downloading
dependencies. To make use of alternate urls run:
rebar get-deps alt_urls=true
pirms 13 gadiem
Tuncer Ayaz
3469039201
Add Ali Yakout to THANKS file
pirms 13 gadiem
Ali Yakout
e0d9ca0773
asn1_compiler: only move hrl file if it exists
pirms 13 gadiem
Tuncer Ayaz
3f14c1c092
Skip erlang:halt/1 workaround if >=R15B01
pirms 13 gadiem
Tuncer Ayaz
769160ac36
Remove export_all in simplemod template
pirms 13 gadiem
Tuncer Ayaz
196bc40cac
Add Loic Hoguin to THANKS file
pirms 13 gadiem
Tuncer Ayaz
b6fadef5d3
Fix whitespace errors
pirms 13 gadiem
Loïc Hoguin
2c37270f52
Fix badarg crashes on missing dependency errors
pirms 13 gadiem
Tuncer Ayaz
9d5557b16f
Deprecate port_envs in favor of port_env
pirms 13 gadiem
Юрин Вячеслав
0424d75d78
Make rebar understand wildcard in subdir
If you have dir with many erlang app, then you can simple write
{sub_dirs, ["some_dir/*"]}. Rebar will make operation on subdirs of
dir "some_dir".
pirms 13 gadiem
Tuncer Ayaz
4e0c9506f5
Fix src_dirs option to not hard-code "src"
pirms 13 gadiem
Jesse Gumm
33546cc402
Fix copying dir to non-existing dir in Win32
pirms 13 gadiem
Jesse Gumm
4f6f41cabb
Fix typos in rebar_templater
pirms 13 gadiem
Tuncer Ayaz
da122b3e57
Add rebar_utils:delayed_halt/1
pirms 13 gadiem
Tuncer Ayaz
dd22eb4814
Add Mike Lazar to THANKS file
pirms 13 gadiem
Mike Lazar
fa3dab30ae
Fix typos in generated cmd script in bootstrap
Fixes basho/rebar#188
pirms 13 gadiem
Tuncer Ayaz
af51ad4ef6
Add Phillip Toland to THANKS file
pirms 13 gadiem