From 46b2bd3960ac44756eefa62fa9e0ee74f6599792 Mon Sep 17 00:00:00 2001 From: Eric Knibbe Date: Tue, 7 May 2024 18:41:05 -0400 Subject: [PATCH] Rakefile: remove redundant options --- Rakefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Rakefile b/Rakefile index e377cad62..fc36e824f 100644 --- a/Rakefile +++ b/Rakefile @@ -9,7 +9,7 @@ desc "Generate documentation with YARD" task :yard do sh "find", DOCS_DIR, "-mindepth", "1", "!", "-name", "_config.yml", "!", "-name", "CNAME", "-delete" cd "brew/Library/Homebrew" do - sh "bundle", "exec", "yard", "doc", "--plugin", "sorbet", "--output", DOCS_DIR + sh "bundle", "exec", "yard", "doc", "--output", DOCS_DIR end end