From 6e250aecb610ab09d6e9e081a3898cbd0610930f Mon Sep 17 00:00:00 2001 From: Ahmet Alp Balkan Date: Thu, 14 Dec 2017 15:21:10 -0800 Subject: [PATCH] Remove Formula/*, it's now in homebrew-core Signed-off-by: Ahmet Alp Balkan --- Formula/kubectx.rb | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 Formula/kubectx.rb diff --git a/Formula/kubectx.rb b/Formula/kubectx.rb deleted file mode 100644 index 47c7124..0000000 --- a/Formula/kubectx.rb +++ /dev/null @@ -1,26 +0,0 @@ -class Kubectx < Formula - desc "Tool that can switch between kubectl contexts easily and create aliases" - homepage "https://github.com/ahmetb/kubectx" - url "https://github.com/ahmetb/kubectx/archive/v0.3.1.tar.gz" - sha256 "4e995f5bec6f41c8d5b6e77f413a58ead077816348e72de26dde3655ec2b7d0b" - head "https://github.com/ahmetb/kubectx.git", :branch => "short-names" - bottle :unneeded - - option "with-short-names", "link as \"kctx\" and \"kns\" instead" - - def install - bin.install "kubectx" => build.with?("short-names") ? "kctx" : "kubectx" - bin.install "kubens" => build.with?("short-names") ? "kns" : "kubens" - include.install "utils.bash" - - bash_completion.install "completion/kubectx.bash" => "kubectx" - bash_completion.install "completion/kubens.bash" => "kubens" - zsh_completion.install "completion/kubectx.zsh" => "_kubectx" - zsh_completion.install "completion/kubens.zsh" => "_kubens" - end - - test do - system "which", build.with?("short-names") ? "kctx" : "kubectx" - system "which", build.with?("short-names") ? "kns" : "kubens" - end -end