The unix "source" command maps to "command source" in lldb. :-)


git-svn-id: https://llvm.org/svn/llvm-project/llvdb/trunk@109673 91177308-0d34-0410-b5e6-96231b3b80d8
diff --git a/source/Interpreter/CommandInterpreter.cpp b/source/Interpreter/CommandInterpreter.cpp
index 1027f94..3c0cd43 100644
--- a/source/Interpreter/CommandInterpreter.cpp
+++ b/source/Interpreter/CommandInterpreter.cpp
@@ -1153,7 +1153,7 @@
         char path[PATH_MAX];
         init_file.GetPath(path, sizeof(path));
         StreamString source_command;
-        source_command.Printf ("source '%s'", path);
+        source_command.Printf ("command source '%s'", path);
         HandleCommand (source_command.GetData(), false, result);
     }
     else