Skip to content

Commit 825d312

Browse files
sriehljosevalim
authored andcommitted
Fix the build system to work with a path that contains a space (#167)
1 parent 16f2bc7 commit 825d312

2 files changed

+2
-2
lines changed

Elixir - mix test $file.sublime-build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"shell_cmd": "cd $folder && mix test $file",
2+
"shell_cmd": "cd \"$folder\" && mix test $file",
33
"working_dir": "${project_path}",
44
"selector": "source.elixir"
55
}

Elixir - mix test.sublime-build

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"shell_cmd": "cd $folder && mix test",
2+
"shell_cmd": "cd \"$folder\" && mix test",
33
"working_dir": "${project_path}",
44
"selector": "source.elixir"
55
}

0 commit comments

Comments
 (0)