diff --git a/tools/luthier.py b/tools/luthier.py index b348b3c..8538467 100755 --- a/tools/luthier.py +++ b/tools/luthier.py @@ -31,7 +31,7 @@ class ReportableError(Exception): argParser.add_argument( 'subcommand', help='command to execute', metavar="CMD", - choices=['configure', 'string', 'build', 'craft', 'run', 'play'], + choices=['configure', 'tune', 'build', 'craft', 'run', 'play'], ) argParser.add_argument( @@ -81,7 +81,7 @@ class ReportableError(Exception): argParser.epilog = """ valid subcommands: - * configure (or string) + * configure (or tune) * build (or craft) * run (or play) @@ -275,7 +275,7 @@ def main(argv): subcommand = args.subcommand - if subcommand == "configure" or subcommand == "string": + if subcommand == "configure" or subcommand == "tune": return configure(args) elif subcommand == "build" or subcommand == "craft": # auto configure if it's not already happened