From 8ae18f463ed78ec2c8276b4422c691abb9d3cad6 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Sun, 14 Jul 2024 14:41:46 -0400 Subject: [PATCH] cmd/--repository.rb: tweak error message. --- Library/Homebrew/cmd/--repository.rb | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Library/Homebrew/cmd/--repository.rb b/Library/Homebrew/cmd/--repository.rb index 2666feb488..c016f29d50 100644 --- a/Library/Homebrew/cmd/--repository.rb +++ b/Library/Homebrew/cmd/--repository.rb @@ -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