blob: cba37e6ea4c1ee5912c65cd73afbb190388561c7 [file] [log] [blame]
Stuart McCullochf3173222012-06-07 21:57:32 +00001package aQute.bnd.build;
2
3import aQute.bnd.service.action.*;
4
5public class ScriptAction implements Action {
Stuart McCulloch4482c702012-06-15 13:27:53 +00006 final String script;
7 final String type;
Stuart McCullochf3173222012-06-07 21:57:32 +00008
Stuart McCulloch4482c702012-06-15 13:27:53 +00009 public ScriptAction(String type, String script) {
10 this.script = script;
11 this.type = type;
12 }
13
14 public void execute(Project project, String action) throws Exception {
15 project.script(type, script);
16 }
Stuart McCullochf3173222012-06-07 21:57:32 +000017
18}