From 979e81fc882b17a5dbdec7e140b9935b246fda19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan-Otto=20Kr=C3=B6pke?= Date: Fri, 14 Mar 2025 19:11:59 +0100 Subject: [PATCH] brew: setup shell completion --- Formula/stackit.rb | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Formula/stackit.rb b/Formula/stackit.rb index 8bd513e..d634870 100644 --- a/Formula/stackit.rb +++ b/Formula/stackit.rb @@ -16,6 +16,8 @@ class Stackit < Formula def install bin.install "stackit" + + generate_completions_from_executable(bin/"stackit", "completion") end end if Hardware::CPU.arm? @@ -24,6 +26,8 @@ def install def install bin.install "stackit" + + generate_completions_from_executable(bin/"stackit", "completion") end end end @@ -36,6 +40,8 @@ def install def install bin.install "stackit" + + generate_completions_from_executable(bin/"stackit", "completion") end end end @@ -46,6 +52,8 @@ def install def install bin.install "stackit" + + generate_completions_from_executable(bin/"stackit", "completion") end end end