Skip to content

Commit 9f00aa6

Browse files
committed
Make default CFML build system run as shell command
`box $file_name` is now run as a shell command
1 parent 5b76fed commit 9f00aa6

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

build/CFML.sublime-build

+2-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
{
2-
"cmd": ["box", "$file_name"],
2+
"shell_cmd": "box \"$file_name\"",
3+
"file_regex": "(\\S.*): line ([0-9]+)",
34
"selector": "embedding.cfml",
45

56
"variants":

src/testbox/test_runner.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ def load():
1818

1919
class TestboxCommand(sublime_plugin.WindowCommand):
2020

21-
def run(self, cmd = None, test_type=""):
21+
def run(self, test_type="", **kwargs):
2222

2323
if not len(self.get_setting("testbox_runner_url")):
2424
sublime.message_dialog("No TestBox runner URL has been defined for this project.")

0 commit comments

Comments
 (0)