// Sublime Text 3 : build system for a simple bash script. // (C) Lilian Besson, 2015. // See http://perso.crans.org/besson/publis/ST3/ for more ST3 build systems! // and http://docs.sublimetext.info/en/latest/reference/build_systems/configuration.html for the doc on ST3 build system. { "cmd": [ "bash", "$file" ], "linux": { "cmd": [ "/usr/bin/env", "bash", "$file" ], }, "selector": "source.bash", "file_regex": "^(/.*): ligne ([0-9]+):", // ./octave.sh // "path": "$PATH" "working_dir": "${project_path:${folder}}" }