return getForgeCommand(shellContext, name, completeLine);
}
catch (CommandNotFoundException cnfe)
{
// Not a forge command, fallback to aesh command
CommandContainer nativeCommand = aeshCommandRegistry.getCommand(name, completeLine);
AeshUICommand aeshCommand = new AeshUICommand(nativeCommand);
SingleCommandController controller = commandFactory.createSingleController(shellContext, shell, aeshCommand);
try
{
controller.initialize();