Merge "Use pip instead of setup.py when installing Askbot"

This commit is contained in:
Zuul 2018-07-21 15:00:52 +00:00 committed by Gerrit Code Review
commit 8a9bd43a1e
1 changed files with 1 additions and 1 deletions

View File

@ -116,7 +116,7 @@ class askbot::install (
exec { 'askbot-install':
path => [ '/bin', '/sbin' , '/usr/bin', '/usr/sbin', '/usr/local/bin' ],
cwd => "${dist_root}/askbot",
command => '/usr/askbot-env/bin/python setup.py -q install',
command => '/usr/askbot-env/bin/pip install .',
logoutput => on_failure,
subscribe => Git['askbot'],
refreshonly => true,