summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJulian Andres Klode <julian.klode@canonical.com>2024-04-15 18:19:44 +0200
committerJulian Andres Klode <julian.klode@canonical.com>2024-04-19 20:49:05 +0200
commitcd1183f9965692834fa237be6114db0e6b413c41 (patch)
tree0604d54d1fc44a245c805d20f7f2da6e596b42ce
parent31d328f10d13393936b4adb779a527befa289fa7 (diff)
Insert blank line following simulation note
-rw-r--r--apt-private/private-main.cc2
1 files changed, 2 insertions, 0 deletions
diff --git a/apt-private/private-main.cc b/apt-private/private-main.cc
index a80f03c99..f28f5cb80 100644
--- a/apt-private/private-main.cc
+++ b/apt-private/private-main.cc
@@ -68,6 +68,8 @@ void CheckIfSimulateMode(CommandLine &CmdL) /*{{{*/
" Keep also in mind that locking is deactivated,\n"
" so don't depend on the relevance to the real current situation!\n"),
_config->Find("Binary").c_str());
+ if (_config->FindI("APT::Output-Version") >= 30)
+ std::cout << std::endl;
_config->Set("Debug::NoLocking",true);
}
}