From b3c89ae6f886a1c5478da1a2c98cd2387f566e65 Mon Sep 17 00:00:00 2001 From: Paul Beckingham Date: Sat, 25 Oct 2014 22:35:26 -0400 Subject: [PATCH] CLI - Converted CmdExec from Parser to CLI. --- src/commands/CmdExec.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/commands/CmdExec.cpp b/src/commands/CmdExec.cpp index 2abd8bf22..7ec02adf5 100644 --- a/src/commands/CmdExec.cpp +++ b/src/commands/CmdExec.cpp @@ -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 ()); }