cmd/formulae: use ShellCommand

This commit is contained in:
Ruoyu Zhong 2024-07-15 11:39:50 -04:00
parent 2ef745445b
commit e0db9061d1
No known key found for this signature in database

View File

@ -2,16 +2,16 @@
# frozen_string_literal: true # frozen_string_literal: true
require "abstract_command" require "abstract_command"
require "shell_command"
module Homebrew module Homebrew
module Cmd module Cmd
class Formulae < AbstractCommand class Formulae < AbstractCommand
include ShellCommand
cmd_args do cmd_args do
description "List all locally installable formulae including short names." description "List all locally installable formulae including short names."
end end
sig { override.void }
def run = raise_sh_command_error!
end end
end end
end end