Commit d6d6e239 by Feanil Patel

Update check-migrations.sh

Correct typo.  Spelling is hard.
parent 330df285
......@@ -19,14 +19,14 @@ cd "$WORKSPACE/edx-platform"
pip install --exists-action w -r requirements/edx/pre.txt
pip install --exists-action w -r requirements/edx/base.txt
if [[ -f requiremnets/edx/post.txt ]]; then
if [[ -f requirements/edx/post.txt ]]; then
pip install --exists-action w -r requirements/edx/post.txt
fi
if [[ -f requiremnets/edx/repo.txt ]]; then
if [[ -f requirements/edx/repo.txt ]]; then
pip install --exists-action w -r requirements/edx/repo.txt
fi
pip install --exists-action w -r requirements/edx/github.txt
if [[ -f requiremnets/edx/local.txt ]]; then
if [[ -f requirements/edx/local.txt ]]; then
pip install --exists-action w -r requirements/edx/local.txt
fi
pip install --exists-action w -r requirements/edx/edx-private.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