homebrew-core/Formula/checkbashisms.rb
Chongyu Zhu e75268f922
checkbashisms 2.19.3
Closes #37088.

Signed-off-by: Chongyu Zhu <i@lembacon.com>
2019-02-19 18:55:21 +08:00

32 lines
930 B
Ruby

class Checkbashisms < Formula
desc "Checks for bashisms in shell scripts"
homepage "https://launchpad.net/ubuntu/+source/devscripts/"
url "https://deb.debian.org/debian/pool/main/d/devscripts/devscripts_2.19.3.tar.xz"
sha256 "2c7da1a9e3f3b37bb4f2040bd4e0919970d53b58c80ff98d3590872df49042ab"
bottle :unneeded
def install
inreplace "scripts/checkbashisms.pl" do |s|
s.gsub! "###VERSION###", version
s.gsub! "#!/usr/bin/perl", "#!/usr/bin/perl -T"
end
bin.install "scripts/checkbashisms.pl" => "checkbashisms"
man1.install "scripts/checkbashisms.1"
end
test do
(testpath/"test.sh").write <<~EOS
#!/bin/sh
if [[ "home == brew" ]]; then
echo "dog"
fi
EOS
expected = <<~EOS
(alternative test command ([[ foo ]] should be [ foo ])):
EOS
assert_match expected, shell_output("#{bin}/checkbashisms #{testpath}/test.sh 2>&1", 1)
end
end