diff options
| author | Adam Vandenberg | 2011-04-04 16:56:47 -0700 |
|---|---|---|
| committer | Adam Vandenberg | 2011-04-04 16:56:47 -0700 |
| commit | 1fb85efce5e47a832f187f9c8ee12bc42649fa3a (patch) | |
| tree | bfaf9f7b0f5eb90f8d184179c0fa962621514240 /Library/Formula/python.rb | |
| parent | f9f90beaa129c78ab31a24c49960dce2455d9eda (diff) | |
| download | homebrew-1fb85efce5e47a832f187f9c8ee12bc42649fa3a.tar.bz2 | |
Rewrite caveats to new style.
To make it easier to copy and paste multiline scripts from caveats,
no longer use $ as a prompt marker.
Diffstat (limited to 'Library/Formula/python.rb')
| -rw-r--r-- | Library/Formula/python.rb | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/Library/Formula/python.rb b/Library/Formula/python.rb index d5c6264e9..79d84ad21 100644 --- a/Library/Formula/python.rb +++ b/Library/Formula/python.rb @@ -106,8 +106,8 @@ class Python < Formula You may want to symlink this Framework to a standard OS X location, such as: - mkdir ~/Frameworks - ln -s "#{prefix}/Frameworks/Python.framework" ~/Frameworks + mkdir ~/Frameworks + ln -s "#{prefix}/Frameworks/Python.framework" ~/Frameworks EOS general_caveats = <<-EOS.undent @@ -120,8 +120,8 @@ class Python < Formula Distribute has been installed, so easy_install is available. To update distribute itself outside of Homebrew: - $ easy_install pip - $ pip install --upgrade distribute + #{scripts_folder}/easy_install pip + #{scripts_folder}/pip install --upgrade distribute See: https://github.com/mxcl/homebrew/wiki/Homebrew-and-Python EOS @@ -144,7 +144,7 @@ private # The Cellar location of site-packages def site_packages - effective_lib + "python2.7/site-packages" + effective_lib+"python2.7/site-packages" end # The HOMEBREW_PREFIX location of site-packages |
