want to have a custom build system but am really not able to make one. I have Gradle 1.2 installed and even the GRADLE_HOME is set correctly now I have the following commend in the build system file
{
"cmd": "gradle"],
"working_dir": "${project_path:${folder}}",
}
And the error I get is as follows(when I try to build my project)
[Errno 2] No such file or directory
[cmd: [u'gradle', u'build.gradle']]
[dir: /home/roger/Project/Visage/HelloWorld/src/main/visage/visage/javafx]
[path: $project]
[Finished]
Actually my Project Base directory is HelloWorld and I have my build.gradle there itself. Please help me to write the correct build system or give the correct commands to avoid error and execute successfully. I am currently using UBUNTU 12.04. My Project Has a package structure Like (HelloWorld/src/main/visage/visage/My File). I need to execute gradle command for building and running on the HelloWorld folder.