Skip to content

Commit

Permalink
Added a caveat that you should add the Python scripts folder to your …
Browse files Browse the repository at this point in the history
…path after installing with Homebrew. Closes #27.
  • Loading branch information
gleitz committed Jan 14, 2013
1 parent a78532c commit 27ca097
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions howdoi.rb
Expand Up @@ -9,4 +9,15 @@ def install
setup_args = ['setup.py', 'install']
system "python", *setup_args
end

def scripts_folder
HOMEBREW_PREFIX/"share/python"
end

def caveats
<<-EOS.undent
To run the `howdoi` command, you'll need to add Python's script directory to your PATH:
#{scripts_folder}
EOS
end
end

0 comments on commit 27ca097

Please sign in to comment.