Created
December 8, 2015 18:32
-
-
Save rymawby/3f863e5bad527062ccee to your computer and use it in GitHub Desktop.
Example build / test shortcuts for a Brightscript project in Sublime Text
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Show hidden characters
{ | |
"shell": true, | |
"cmd": ["make install"], | |
"working_dir": "/path/to/project", | |
"path": "/usr/local/bin:$PATH", | |
"env":{ | |
"ROKU_DEV_TARGET": "192.168.0.1" | |
}, | |
"variants": [ | |
{ | |
"shell": true, | |
"name": "Test", | |
"cmd": ["make install test=true"], | |
"working_dir": "/path/to/project", | |
"path": "/usr/local/bin:$PATH" | |
} | |
] | |
} | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment