f16132dbcf
Closes #39687. Signed-off-by: Chongyu Zhu <i@lembacon.com>
26 lines
826 B
Ruby
26 lines
826 B
Ruby
class AtlassianCli < Formula
|
|
desc "Command-line interface clients for Atlassian products"
|
|
homepage "https://bobswift.atlassian.net/wiki/pages/viewpage.action?pageId=1966101"
|
|
url "https://bobswift.atlassian.net/wiki/download/attachments/16285777/atlassian-cli-8.5.0-distribution.zip"
|
|
sha256 "b9c2d2c9d23852cef34be9efc3813ce4fd2f79fe665c9b9bc784f462749faf89"
|
|
|
|
bottle :unneeded
|
|
|
|
depends_on :java => "1.8+"
|
|
|
|
def install
|
|
Dir.glob("*.sh") do |f|
|
|
cmd = File.basename(f, ".sh")
|
|
inreplace cmd + ".sh", "`dirname $0`", share
|
|
bin.install cmd + ".sh" => cmd
|
|
end
|
|
share.install "lib", "license"
|
|
end
|
|
|
|
test do
|
|
Dir.glob(bin/"*") do |f|
|
|
cmd = File.basename(f, ".sh")
|
|
assert_match "Usage:", shell_output(bin/"#{cmd} --help 2>&1 | head") unless cmd == "atlassian"
|
|
end
|
|
end
|
|
end
|