Commit 513aec13 by Feanil Patel

Don't pip install the post requirements file if it doesn't exist.

parent e0cf7a07
......@@ -18,7 +18,9 @@ cd "$WORKSPACE/edx-platform"
pip install --exists-action w -r requirements/edx/pre.txt
pip install --exists-action w -r requirements/edx/base.txt
pip install --exists-action w -r requirements/edx/post.txt
if [[ -f requiremnets/edx/post.txt ]]; then
pip install --exists-action w -r requirements/edx/post.txt
fi
pip install --exists-action w -r requirements/edx/repo.txt
pip install --exists-action w -r requirements/edx/github.txt
pip install --exists-action w -r requirements/edx/local.txt
......
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