This commit is contained in:
Mislav Marohnić 2019-10-31 12:25:35 +01:00 коммит произвёл GitHub
Родитель b4fcb99f4f
Коммит e03be251c9
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -5,8 +5,8 @@ class Gh < Formula
depends_on "go" => :build
def install
system "go", "build", "-o", "gh", "."
bin.install "gh"
system "make"
bin.install "bin/gh"
(bash_completion/"gh.sh").write `#{bin}/gh completion -s bash`
(zsh_completion/"_gh").write `#{bin}/gh completion -s zsh`
end