Created
March 12, 2018 17:47
-
-
Save bluefangs/94e3869191a06a152c19c6a349f7a37d to your computer and use it in GitHub Desktop.
simple sh task for vscode
This file contains 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
{ | |
"version": "2.0.0", | |
"tasks": [ | |
{ | |
"label": "Run shell script", | |
"type": "shell", | |
"command": "~/workspace/ezems/wow.sh", | |
// "windows": { | |
// "command": ".\\scripts\\test.bat" | |
// }, | |
"group": "test", | |
"presentation": { | |
"reveal": "always", | |
"panel": "new" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment