Sublime Forum

Launch Build in external cmd window

#1

Hi I just made a very simple build system

{ "cmd": "${project_path}\\watch.bat"] }

but I’d like it to be launched on an external prompt command window rather than having the sublime console pop up, how can I do it?

win64 ST 2.0.1

0 Likes

#2

Solved it with

"cmd": "start ${project_path}\\watch.bat"], "shell": true

0 Likes