Skip to content

Commit

Permalink
Fixed tasks.json to work on multiple operating systems
Browse files Browse the repository at this point in the history
  • Loading branch information
jO-Osko committed Oct 9, 2019
1 parent 3e75a86 commit a8fe26f
Showing 1 changed file with 26 additions and 2 deletions.
28 changes: 26 additions & 2 deletions .vscode/tasks.json
Expand Up @@ -4,12 +4,36 @@
{
"label": "Python",
"type": "shell",
"command": "python -i \\\"${file}\\\""
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"command": "python -i \\\"${file}\\\""
},
"linux": {
"command": "python -i \"${file}\""
},
"osx": {
"command": "python -i \"${file}\""
}
},
{
"label": "OCaml",
"type": "shell",
"command": "ocaml -init \\\"${file}\\\""
"group": {
"kind": "build",
"isDefault": true
},
"windows": {
"command": "ocaml -init \\\"${file}\\\""
},
"linux": {
"command": "ocaml -init \"${file}\""
},
"osx": {
"command": "ocaml -init \"${file}\""
}
}
]
}

0 comments on commit a8fe26f

Please sign in to comment.