Skip to content

Commit

Permalink
Rename whimsical luthier configure subcommand to luthier tune. (a…
Browse files Browse the repository at this point in the history
…atxe#66)

For luthier, `tune` is a better whimsical name than `string`, even
though it has the same problem of not making sense temporally. We will
live with this egregious error, I'm sure.
  • Loading branch information
aatxe authored Feb 5, 2025
1 parent c2257af commit 7f45e77
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tools/luthier.py
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down Expand Up @@ -81,7 +81,7 @@ class ReportableError(Exception):

argParser.epilog = """
valid subcommands:
* configure (or string)
* configure (or tune)
* build (or craft)
* run (or play)
Expand Down Expand Up @@ -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
Expand Down

0 comments on commit 7f45e77

Please sign in to comment.