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):
76
76
if not (cwd or file_path ):
77
77
print_status_msg (
78
78
'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.'
80
80
)
81
81
return
82
82
Original file line number Diff line number Diff line change @@ -37,7 +37,7 @@ def run(self, **_kwargs):
37
37
else :
38
38
sublime .message_dialog (
39
39
'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.'
41
41
)
42
42
43
43
class MixTestCommand (sublime_plugin .WindowCommand ):
@@ -433,7 +433,7 @@ def reverse_find_json_path(window, json_file_path):
433
433
434
434
root_dir or print_status_msg (
435
435
'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.'
437
437
)
438
438
439
439
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