From a2b1208e9c7d6a9588bce49729cfedbdf9f8be21 Mon Sep 17 00:00:00 2001 From: Filippo Valsorda Date: Sat, 21 Mar 2020 22:12:54 -0400 Subject: [PATCH] mkcert-master: remove in favor of "brew gomod filippo.io/mkcert@master" See https://blog.filippo.io/install-go-tools-from-modules-with-brew-gomod/ --- mkcert-master.rb | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 mkcert-master.rb diff --git a/mkcert-master.rb b/mkcert-master.rb deleted file mode 100644 index 67de575..0000000 --- a/mkcert-master.rb +++ /dev/null @@ -1,17 +0,0 @@ -# Copyright 2018 The mkcert Authors. All rights reserved. -# Use of this source code is governed by a BSD-style -# license that can be found in the LICENSE file. - -class MkcertMaster < Formula - desc "Simple tool to make locally trusted development certificates" - homepage "https://github.com/FiloSottile/mkcert" - head "https://github.com/FiloSottile/mkcert.git" - - depends_on "go" => :build - - def install - ENV["GOPATH"] = HOMEBREW_CACHE/"go_cache" - system "go", "build", "-o", bin/"mkcert" - prefix.install_metafiles - end -end