diff options
| author | Misty De Meo | 2014-06-10 10:45:50 -0700 |
|---|---|---|
| committer | Misty De Meo | 2014-06-10 10:47:01 -0700 |
| commit | bfc69c960114afbe26de12338b807c58e0c0856f (patch) | |
| tree | 2d85795c396a612742d4602c845f7851b99a853b | |
| parent | 9e5403ca349a20eae45a485c11f86f6284606822 (diff) | |
| download | homebrew-bfc69c960114afbe26de12338b807c58e0c0856f.tar.bz2 | |
runit: rcmds is newline-delimited
Fixes #30032
| -rw-r--r-- | Library/Formula/runit.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Library/Formula/runit.rb b/Library/Formula/runit.rb index d087bc700..1e2827813 100644 --- a/Library/Formula/runit.rb +++ b/Library/Formula/runit.rb @@ -20,7 +20,7 @@ class Runit < Formula # install them in homebrew. rcmds = File.open("package/commands").read - rcmds.each do |r| + rcmds.split("\n").each do |r| bin.install("command/#{r.chomp}") man8.install("man/#{r.chomp}.8") end |
