Skip to content

Commit

Permalink
further separate -e from -r
Browse files Browse the repository at this point in the history
  • Loading branch information
notnoop committed Sep 3, 2011
1 parent b09d9f5 commit a31e520
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion cookbooks/app/recipes/default.rb
Expand Up @@ -3,7 +3,13 @@

# installs the demo app

python_pip "-r /srv/openblock/src/obdemo/requirements.txt -e /srv/openblock/src/obdemo" do
python_pip "-r /srv/openblock/src/obdemo/requirements.txt" do
virtualenv "/srv/openblock/virtualenv"

action :install
end

python_pip "-e /srv/openblock/src/obdemo" do
virtualenv "/srv/openblock/virtualenv"

action :install
Expand Down

0 comments on commit a31e520

Please sign in to comment.