Commit fb193f55 by Will Daly

Skip installation of the OA XBlock if it's already installed

parent 5c30cf83
......@@ -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