Commit 09807a80 by Will Daly

Merge pull request #348 from edx/will/speed-up-install-reqs

Skip installation of the OA XBlock if it's already installed
parents 5c30cf83 fb193f55
......@@ -12,5 +12,7 @@ fi
echo "Installing Python requirements..."
pip install -q -r requirements/$REQS.txt
echo "Installing XBlock..."
pip install -q -e .
echo "Installing the OpenAssessment XBlock..."
if [ -z `pip freeze | grep ora2` ]; then
pip install -q -e .
fi
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