Brian O'Connor

Updating arg check in OSGiWrapper

Change-Id: I523bddf2501535e4162de0703a48089ec4c8ebc2
......@@ -74,7 +74,7 @@ public class OSGiWrapper {
private String webContext;
public static void main(String[] args) {
if (args.length < 10) {
if (args.length < 11) {
System.err.println("Not enough args");
System.exit(1);
}
......