Update to venv.pip_install_and_link in doc

`venv.link_scripts(bin) { venv.pip_install buildpath }` is now `venv.pip_install_and_link buildpath`
This commit is contained in:
Michka Popoff 2017-05-13 23:26:09 +02:00 committed by GitHub
parent 459fef3b09
commit 43e38dfc01

View File

@ -143,7 +143,7 @@ def install
%w[six parsedatetime].each do |r|
venv.pip_install resource(r)
end
venv.link_scripts(bin) { venv.pip_install buildpath }
venv.pip_install_and_link buildpath
end
```