Commit f1bc7a16 by e0d

Merge pull request #4098 from edx/e0d/paver-shim

shim to update ruby/node, not python reqs
parents 5d1c5ca5 fbde5fcd
......@@ -190,7 +190,7 @@ def watch_assets(options):
@task
@needs('pavelib.prereqs.install_prereqs')
@needs('pavelib.prereqs.install_asset_prereqs')
@consume_args
def update_assets(args):
"""
......
......@@ -151,3 +151,15 @@ def install_prereqs():
install_ruby_prereqs()
install_node_prereqs()
install_python_prereqs()
@task
def install_asset_prereqs():
"""
Installs Ruby and Node
"""
if os.environ.get("NO_PREREQ_INSTALL", False):
return
install_ruby_prereqs()
install_node_prereqs()
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment