From 2affd9653aacac851bb8c470e6f6edf08e6d6cbb Mon Sep 17 00:00:00 2001 From: sgoudham Date: Tue, 4 Jul 2023 23:49:27 +0100 Subject: [PATCH] fix(git-view): install path --- Formula/git-view.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Formula/git-view.rb b/Formula/git-view.rb index 96ef349..bb33f3b 100644 --- a/Formula/git-view.rb +++ b/Formula/git-view.rb @@ -1,11 +1,11 @@ class GitView < Formula - desc "A git sub-command to view your git repository in the web browser" + desc "A git sub-command to view your git repository on GitHub" homepage "https://github.com/sgoudham/git-view" url "https://github.com/sgoudham/git-view/releases/download/v0.1.0/git-view-x86_64-apple-darwin.tar.gz" sha256 "34a1cdeadf11d1ce2ce88ab7e1fad2d4acede39720a4f94a5d1ccb4016e11c9b" license "MIT" def install - bin.install "git-view" + bin.install "git-view-x86_64-apple-darwin/git-view" end end