diff options
Diffstat (limited to 'src')
-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 |