blob: 8ca55fd78a0f65a59d73c95594d4321c8a17c7e8 [file] [log] [blame]
Stuart McCulloch26e7a5a2011-10-17 10:31:43 +00001package aQute.bnd.build;
2
3import aQute.bnd.service.action.*;
4
5public class ScriptAction implements Action {
6 final String script;
7 final String type;
8
9 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 }
17
18}