cmd/--repository.rb: tweak error message.

This commit is contained in:
Mike McQuaid 2024-07-14 14:41:46 -04:00 committed by Ruoyu Zhong
parent 3bc01a4d31
commit 8ae18f463e
No known key found for this signature in database

View File

@ -26,7 +26,9 @@ module Homebrew
sig { override.void }
def run
raise StandardError, "This command is not meant to be run."
raise StandardError,
"This command is just here for completions generation. " \
"It's actually defined in `cmd/--repository.sh` instead."
end
end
end