From 76a7dbcf1fc8496e652ea0a45810127470a3530b Mon Sep 17 00:00:00 2001 From: Jim Edwards Date: Fri, 26 Aug 2016 14:22:59 -0600 Subject: [PATCH] make help message consistant with create_test --- scripts/Tools/component_generate_baseline | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/scripts/Tools/component_generate_baseline b/scripts/Tools/component_generate_baseline index 1d154b5bbf9a..0dcca7681c8b 100755 --- a/scripts/Tools/component_generate_baseline +++ b/scripts/Tools/component_generate_baseline @@ -36,9 +36,9 @@ OR help="Use custom baseline dir") parser.add_argument("-o", "--allow-baseline-overwrite", action="store_true", - help="If the generate baseline option is specified with a baseline directory option " - "existing tests in that directory will not be overwritten unless this flag is provided." - "You can use bless-test-results to bless baselines from a recent run.") + help="By default an attempt to overwrite an existing baseline directory " + "will raise an error. Specifying this option allows " + "existing baseline directories to be silently overwritten.") args = parser.parse_args(args[1:])