- Converted CmdExec from Parser to CLI.
This commit is contained in:
Paul Beckingham 2014-10-25 22:35:26 -04:00
parent 30f46ca5e7
commit b3c89ae6f8

View file

@ -47,7 +47,7 @@ CmdExec::CmdExec ()
int CmdExec::execute (std::string& output)
{
std::string command_line;
join (command_line, " ", context.parser.getWords ());
join (command_line, " ", context.cli.getWords ());
return system (command_line.c_str ());
}