Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

television 0.8.0 #202688

Merged
merged 2 commits into from
Dec 29, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions Formula/t/television.rb
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
class Television < Formula
desc "General purpose fuzzy finder TUI"
homepage "https://github.com/alexpasmantier/television"
url "https://github.com/alexpasmantier/television/archive/refs/tags/0.7.1.tar.gz"
sha256 "18b1590003c065813d2726cc835ae4a33c5ce0bd9de6255dfad0e6e9bb759169"
url "https://github.com/alexpasmantier/television/archive/refs/tags/0.8.0.tar.gz"
sha256 "bd110e3ca53bd9eaa20aad66015f1eb51ed6945b2827ca24d7c6bf7ade74a63a"
license "MIT"
head "https://github.com/alexpasmantier/television.git", branch: "main"

Expand Down Expand Up @@ -32,7 +32,7 @@ def install
output_log = testpath/"output.log"
pid = spawn bin/"tv", [:out, :err] => output_log.to_s
sleep 2
assert_match "Preview", output_log.read
assert_match "preview", output_log.read
ensure
Process.kill("TERM", pid)
Process.wait(pid)
Expand Down
Loading