blob: cba37e6ea4c1ee5912c65cd73afbb190388561c7 [file] [log] [blame]
package aQute.bnd.build;
import aQute.bnd.service.action.*;
public class ScriptAction implements Action {
final String script;
final String type;
public ScriptAction(String type, String script) {
this.script = script;
this.type = type;
}
public void execute(Project project, String action) throws Exception {
project.script(type, script);
}
}