From 9c8f63760069f135c22eb37f628c61c97bf4a524 Mon Sep 17 00:00:00 2001 From: Gabriele Rizzo Date: Sat, 30 May 2026 23:48:27 +0200 Subject: [PATCH] steampipe_fixups.py: Fix usage text to match the actual verb. The usage message instructed running the script with "prepare", but the script only accepts "process" (and that is the verb the build invokes in Makefile.in). Following the printed usage produced an error and a usage re-print. Correct the text to "process". --- steampipe_fixups.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steampipe_fixups.py b/steampipe_fixups.py index e5646ebe6ae..60e52a06919 100755 --- a/steampipe_fixups.py +++ b/steampipe_fixups.py @@ -15,7 +15,7 @@ def usage(): print("Usage:") - print("\t" + sys.argv[0] + "\tprepare\t\t[manifest output file]") + print("\t" + sys.argv[0] + "\tprocess\t\t[manifest output file]") print("\t\tProcess the given path and output the manifest file to the given path, or if unspecified.") print("") print("\t" + sys.argv[0] + "\trestore\t\t[manifest file]")