From 6de85912edfa8f1318cb5422937f5774c8c64496 Mon Sep 17 00:00:00 2001 From: Gunnar Beutner Date: Mon, 20 Oct 2014 21:20:02 +0200 Subject: [PATCH] Add missing new-line after output refs #7370 --- lib/cli/variablegetcommand.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/cli/variablegetcommand.cpp b/lib/cli/variablegetcommand.cpp index f920e50ee..2ef66be87 100644 --- a/lib/cli/variablegetcommand.cpp +++ b/lib/cli/variablegetcommand.cpp @@ -71,7 +71,7 @@ int VariableGetCommand::Run(const boost::program_options::variables_map& vm, con } if (vm.count("current")) { - std::cout << ScriptVariable::Get(ap[0], &Empty); + std::cout << ScriptVariable::Get(ap[0], &Empty) << "\n"; return 0; } -- 2.40.0