diff options
author | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-07-31 15:39:36 +0200 |
---|---|---|
committer | Tuncer Ayaz <tuncer.ayaz@gmail.com> | 2012-07-31 15:39:36 +0200 |
commit | ad2e94b96b262ca72cd5b93c16b973a28dff9a95 (patch) | |
tree | e3a67961f93c233f70b482b7b98801a65a31e732 | |
parent | 471b5714eb0481e316eab66288e2cce76023b602 (diff) |
Add experimental notice to test-compile and shell
-rw-r--r-- | src/rebar_eunit.erl | 1 | ||||
-rw-r--r-- | src/rebar_shell.erl | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/src/rebar_eunit.erl b/src/rebar_eunit.erl index 5128dbf..114ef3d 100644 --- a/src/rebar_eunit.erl +++ b/src/rebar_eunit.erl @@ -120,6 +120,7 @@ clean(_Config, _File) -> rebar_file_utils:rm_rf(?TEST_DIR). 'test-compile'(Config, _File) -> + ?CONSOLE("NOTICE: Using experimental 'test-compile' command~n", []), ok = ensure_dirs(), %% Save code path CodePath = setup_code_path(), diff --git a/src/rebar_shell.erl b/src/rebar_shell.erl index aed7879..0426f24 100644 --- a/src/rebar_shell.erl +++ b/src/rebar_shell.erl @@ -33,6 +33,7 @@ -export([shell/2]). shell(_Config, _AppFile) -> + ?CONSOLE("NOTICE: Using experimental 'shell' command~n", []), %% backwards way to say we only want this executed %% for the "top level" directory case is_deps_dir(rebar_utils:get_cwd()) of |