PhoneGapCommandLine line = phoneGapRunConfiguration.getCommandLine();
String command = phoneGapRunConfiguration.getCommand();
assert command != null;
String platform = phoneGapRunConfiguration.getPlatform();
assert platform != null;
return line.runCommand(command, platform, phoneGapRunConfiguration.hasTarget() ? phoneGapRunConfiguration.getTarget() : null, phoneGapRunConfiguration.getExtraArgs());
}
}