From 87d8ab62263fdf43b95f2b36ed6e62c3437f2d32 Mon Sep 17 00:00:00 2001 From: quirinecker Date: Thu, 23 Oct 2025 20:53:04 +0200 Subject: [PATCH] fixed typo --- Formula/docki.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Formula/docki.rb b/Formula/docki.rb index 7a8c1b4..8334e15 100644 --- a/Formula/docki.rb +++ b/Formula/docki.rb @@ -22,13 +22,13 @@ class Docki < Formula bin.install "target/release/docki" # Install shell completions - bash_output = Utils.safe_popen_read("#{bin}/docki", "completion", "bash") + bash_output = Utils.safe_popen_read("#{bin}/docki", "completions", "bash") (bash_completion/"docki").write bash_output - zsh_output = Utils.safe_popen_read("#{bin}/docki", "completion", "zsh") + zsh_output = Utils.safe_popen_read("#{bin}/docki", "completions", "zsh") (zsh_completion/"_docki").write zsh_output - fish_output = Utils.safe_popen_read("#{bin}/docki", "completion", "fish") + fish_output = Utils.safe_popen_read("#{bin}/docki", "completions", "fish") (fish_completion/"docki.fish").write fish_output end