cloudbees-sdk: delete (#22649)

master
ilovezfs 2018-01-09 08:12:53 -08:00 committed by GitHub
parent 929c584921
commit 7c4e7b8703
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 0 additions and 27 deletions

View File

@ -1 +0,0 @@
../Formula/cloudbees-sdk.rb

View File

@ -1,26 +0,0 @@
class CloudbeesSdk < Formula
desc "Command-line tools to make use of the CloudBees Platform"
homepage "https://wiki.cloudbees.com/bin/view/RUN/BeesSDK"
url "https://cloudbees-downloads.s3.amazonaws.com/sdk/cloudbees-sdk-1.5.2-bin.zip"
sha256 "48deb95a01e314c24ffa84b7ac99f98bfa24d9eea8e5883a18c7bd09a240ea8b"
bottle :unneeded
def shim_script(target)
<<~EOS
#!/bin/bash
export BEES_HOME=#{libexec}
"#{libexec}/#{target}" "$@"
EOS
end
def install
rm Dir["*.bat", "*.lnk"]
libexec.install Dir["*"]
(bin+"bees").write shim_script("bees")
(bin+"beesd").write shim_script("beesd")
(bin+"stax").write shim_script("stax")
(bin+"staxd").write shim_script("staxd")
end
end