Skip to content

Commit

Permalink
Merge pull request #19 from 10XL/patch-1
Browse files Browse the repository at this point in the history
add "build" support for windows through wsl
  • Loading branch information
faustinoaq committed Jan 14, 2018
2 parents d60e30d + 035856f commit d4abc5a
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions Crystal.sublime-build
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
{
"shell_cmd": "crystal \"$file\"",
"cmd": ["crystal", "\"$file\""],
"shell": true,
"file_regex": "^(...*?):([0-9]*):?([0-9]*)",
"selector": "source.crystal"
"selector": "source.crystal",
"windows": {
"cmd": ["bash", "-c", "crystal \"$file_name\""]
}
}

0 comments on commit d4abc5a

Please sign in to comment.