Sublime Forum

Run file after make command

#1

I currently have the following Make build:

[code]{
“cmd”: “make”],
“file_regex”: “^(…^:]):([0-9]+):?([0-9]+)?:? (.)$”,
“working_dir”: “${project_path:${folder:${file_path}}}”,
“selector”: “source.makefile”,

"variants":

	{
		"name": "Clean",
		"cmd": "make", "clean"]
	}
]

}[/code]
How do I make it so that once it has done making the executable it runs it?
Thanks!

0 Likes

#2

github.com/GianlucaGuarini/Subl … der-Plugin

This should help you. All tasks are executed sequentially.

0 Likes