typo fix
Some checks failed
Docker Build and Push / build-and-push (push) Has been cancelled
Tests / test (bash) (push) Has been cancelled
Tests / test (zsh) (push) Has been cancelled
Tests / lint (push) Has been cancelled
Tests / docker (push) Has been cancelled

This commit is contained in:
2025-12-02 09:17:23 +01:00
parent d17fcf3049
commit 2ba8f0a496
16 changed files with 110 additions and 110 deletions

View File

@@ -1,6 +1,6 @@
class inish Sh < Formula
class finishSh < Formula
desc "LLM-powered command-line finishtion"
homepage "https://git.appmodel.nl/Tour/inish "
homepage "https://git.appmodel.nl/Tour/finish"
url "https://git.appmodel.nl/Tour/finish/archive/v0.5.0.tar.gz"
sha256 "" # Update with actual SHA256 of the release tarball
license "BSD-2-Clause"
@@ -11,7 +11,7 @@ class inish Sh < Formula
depends_on "bash-completion@2" => :optional
def install
bin.install "inish .sh" => "inish "
bin.install "finish.sh" => "finish"
doc.install "README.md"
doc.install "LICENSE"
end
@@ -30,18 +30,18 @@ class inish Sh < Formula
3. Select a language model:
finish model
You'll need LM-Studio or Ollama running locally to use inish .sh.
You'll need LM-Studio or Ollama running locally to use finish.sh.
LM-Studio: https://lmstudio.ai
Ollama: https://ollama.ai
For more information, visit:
https:/git.appmodel.nl/Tour/inish
https:/git.appmodel.nl/Tour/finish
EOS
end
test do
system "#{bin}/inish ", "--help"
assert_match "inish .sh", shell_output("#{bin}/finish --help")
system "#{bin}/finish", "--help"
assert_match "finish.sh", shell_output("#{bin}/finish --help")
end
end