Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
E
edx-platform
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
edx
edx-platform
Commits
f1bc7a16
Commit
f1bc7a16
authored
Jun 14, 2014
by
e0d
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #4098 from edx/e0d/paver-shim
shim to update ruby/node, not python reqs
parents
5d1c5ca5
fbde5fcd
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
1 deletions
+13
-1
pavelib/assets.py
+1
-1
pavelib/prereqs.py
+12
-0
No files found.
pavelib/assets.py
View file @
f1bc7a16
...
...
@@ -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
):
"""
...
...
pavelib/prereqs.py
View file @
f1bc7a16
...
...
@@ -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
()
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment