From 0699a860a9455cc9a92cc082eb330d3f9be75349 Mon Sep 17 00:00:00 2001 From: Axel Burri Date: Fri, 29 Mar 2019 20:46:40 +0100 Subject: [PATCH] btrbk: cosmetics: remove horizonal line in help message This was added by mistake in: 96956959 btrbk: cosmetics: use heredocs for the help message --- btrbk | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/btrbk b/btrbk index f906f79..44412ba 100755 --- a/btrbk +++ b/btrbk @@ -306,11 +306,11 @@ sub VERSION_MESSAGE sub HELP_MESSAGE { return if($quiet); +#80----------------------------------------------------------------------------- print STDERR <<"END_HELP"; usage: btrbk [options] [filter...] options: --------------------------------------------------------------------------------- -h, --help display this help message --version display version information -c, --config=FILE specify configuration file @@ -350,6 +350,7 @@ commands: For additional information, see $PROJECT_HOME END_HELP +#80----------------------------------------------------------------------------- }