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
// Create a custom Cloud9 build system - similar to the Sublime build system | |
// For more information see https://docs.c9.io/custom_runners.html | |
{ | |
"cmd": [ | |
"bash", | |
"-c", | |
"mkdir -p $(echo $file | sed -r \"s_/src/.*_/_g\")bin; find $(echo $file | sed -r \"s_/src/.*_/_g\")src -name '*.java' -print | xargs javac -sourcepath $(echo $file | sed -r \"s_/src/.*_/_g\")src -d \"$(echo $file | sed -r \"s_/src/.*_/_g\")bin\"" | |
], | |
"info": "\\033[01;34mBuilding\\033[00m \\033[01;31m$project_name\\033[00m", | |
"selector": "source.java", |