brew pull --install should build from source.

This commit is contained in:
Mike McQuaid 2011-07-21 10:14:44 -04:00
parent f0eab140f8
commit 92b9edd34b

View File

@ -60,9 +60,9 @@ HOMEBREW_REPOSITORY.cd do
formula = File.basename(filename, '.rb') formula = File.basename(filename, '.rb')
ohai "Installing #{formula}" ohai "Installing #{formula}"
# Not sure if this is the best way to install? # Not sure if this is the best way to install?
safe_system 'brew', 'install', '--force', formula safe_system 'brew', 'install', '--force', '--build-from-source', formula
end end
end end
end end
end end
end end