aboutsummaryrefslogtreecommitdiffstats
path: root/Library
diff options
context:
space:
mode:
authorJ. Brandt Buckley2014-10-01 16:57:26 -0700
committerMike McQuaid2014-10-02 11:02:50 -0700
commit19ee6039bfeeabf74edb136ba75d90dffa5f2991 (patch)
tree3c64c352f608846f591fa54b88a7f710aa7388ba /Library
parentf592c59414956e3b4de313d02177462dc73e11d7 (diff)
downloadhomebrew-19ee6039bfeeabf74edb136ba75d90dffa5f2991.tar.bz2
Use double-quotes on lines w/ string interpolation
Diffstat (limited to 'Library')
-rw-r--r--Library/Formula/p0f.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/Library/Formula/p0f.rb b/Library/Formula/p0f.rb
index 06cff4c2f..d23a9eb93 100644
--- a/Library/Formula/p0f.rb
+++ b/Library/Formula/p0f.rb
@@ -6,7 +6,7 @@ class P0f < Formula
sha1 'ae2c4fbcddf2a5ced33abd81992405b93207e7c8'
def install
- inreplace 'config.h', 'p0f.fp', "#{etc}/p0f/p0f.fp"
+ inreplace "config.h", "p0f.fp", "#{etc}/p0f/p0f.fp"
system './build.sh'
sbin.install 'p0f'
(etc + 'p0f').install 'p0f.fp'
@@ -19,6 +19,6 @@ class P0f < Formula
'RAAAAAIAAABFAABAbvpAAEAGAAB/AAABfwAAAcv8Iyjt2/Pg' \
'AAAAALAC///+NAAAAgQ/2AEDAwQBAQgKCyrc9wAAAAAEAgAA'
(testpath / 'test.pcap').write(Base64.decode64(pcap))
- system "#{sbin}/p0f", '-r', 'test.pcap'
+ system "#{sbin}/p0f", "-r", "test.pcap"
end
end