Looks like a copy/paste issue ("p" instead of "w".) The fix is in line 73 of
PIXEL/pixel-web-enabled/src/main/java/org/onebeartoe/web/enabled/pixel/CliPixel.java
Incorrect:
WebPortOption = Integer.parseInt(cmd.getOptionValue("p"));
Fix:
WebPortOption = Integer.parseInt(cmd.getOptionValue("w"));
Looks like a copy/paste issue ("p" instead of "w".) The fix is in line 73 of
PIXEL/pixel-web-enabled/src/main/java/org/onebeartoe/web/enabled/pixel/CliPixel.javaIncorrect:
WebPortOption = Integer.parseInt(cmd.getOptionValue("p"));Fix:
WebPortOption = Integer.parseInt(cmd.getOptionValue("w"));