Hi!
I’ve been using SublimeText3 (on a mac) to do most of my skills development. For better integration I wanted to add support for building skills from within SublimeText and created a new build system (Tools -> Build System -> New Build System) with the following config, but it didn’t seem to work. The error I get is
"the input device is not a TTY", which I’m suspecting is from docker. Any idea how to fix this?
Here’s the build system config
{
"cmd": "mind build",
"working_dir": "${folder}",
"shell": true,
"variants": [
{ "name": "Mind Pack & Run",
"cmd": ["mind pack && mind run"],
"shell": true
},
{ "name": "Mind Scan",
"cmd": ["mind scan"],
"shell": true
},
]
}
Ideally I’d love to see a SubilmeText package (a la https://packagecontrol.io/) for the mind sdk. 
Thanks!