rconf 0.8.19 → 0.8.20
Sign up to get free protection for your applications and to get access to all the features.
- data/lib/rconf/support/package_installer.rb +2 -1
- data/lib/rconf/version.rb +1 -1
- metadata +2 -2
@@ -87,7 +87,8 @@ module RightConf
|
|
87
87
|
packages.each do |p|
|
88
88
|
args = [ p ]
|
89
89
|
args << opts if opts
|
90
|
-
|
90
|
+
res = Command.execute('brew', 'install', *args)
|
91
|
+
installed = res.success? && res.output !~ /Formula already installed/
|
91
92
|
Command.sudo('brew', 'link', p) if installed
|
92
93
|
end
|
93
94
|
end
|
data/lib/rconf/version.rb
CHANGED