Remove Formula

This commit is contained in:
2025-05-23 00:22:15 -04:00
parent b71171d5a8
commit 39a282695d

View File

@@ -1,16 +0,0 @@
class Todo < Formula
desc "A simple CLI todo application written in Go"
homepage "https://github.com/AmanTahiliani/todo"
version "0.1.0"
license "MIT"
depends_on "go" => :build
def install
system "go", "build", "-o", bin/"todo", "./cmd/todo"
end
test do
system "#{bin}/todo", "--help"
end
end