File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -76,7 +76,7 @@ def call_mix_format(window, **kwargs):
7676 if not (cwd or file_path ):
7777 print_status_msg (
7878 'Error: could not find a mix.exs file and the _build/ directory! '
79- + 'Make sure that you are in a mix project and that `mix deps.get` was run.'
79+ + 'Make sure that you are in a mix project and that `mix do deps.get + compile ` was run.'
8080 )
8181 return
8282
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def run(self, **_kwargs):
3737 else :
3838 sublime .message_dialog (
3939 'Error: could not find a mix.exs file and the _build/ directory!\n ' +
40- 'Make sure that you are in a mix project and that `mix deps.get` has been run.'
40+ 'Make sure that you are in a mix project and that `mix do deps.get + compile ` has been run.'
4141 )
4242
4343class MixTestCommand (sublime_plugin .WindowCommand ):
@@ -433,7 +433,7 @@ def reverse_find_json_path(window, json_file_path):
433433
434434 root_dir or print_status_msg (
435435 'Error: could not find a mix.exs file and the _build/ directory! '
436- + 'Make sure that you are in a mix project and that `mix deps.get` was run.'
436+ + 'Make sure that you are in a mix project and that `mix do deps.get + compile ` was run.'
437437 )
438438
439439 return root_dir and path .join (root_dir , json_file_path ) or None
You can’t perform that action at this time.
0 commit comments