From 168c6ec50ce8e606a7dc8d421189e59ab610c991 Mon Sep 17 00:00:00 2001 From: Gilles Peskine Date: Mon, 5 Jan 2026 09:45:07 +0100 Subject: [PATCH] Improve out-of-date message Signed-off-by: Gilles Peskine --- tests/scripts/check_option_lists.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/scripts/check_option_lists.py b/tests/scripts/check_option_lists.py index 7ce55c1da9..c9b643bb6d 100755 --- a/tests/scripts/check_option_lists.py +++ b/tests/scripts/check_option_lists.py @@ -37,8 +37,8 @@ def main(): up_to_date = True if not data.is_shadow_file_up_to_date(): print(f'{data.shadow_file_path()} is out of date') - print(f'After adding or removing a conifg option, you need to run') - print(f'{sys.argv[0]} and commit the result.') + print(f'After adding or removing a config option, you need to run') + print(f'{sys.argv[0]} -u and commit the result.') up_to_date = False sys.exit(0 if up_to_date else 1)