Commit f6948d44 by John Jarvis

mkdirs fail silently

parent 1736eb21
......@@ -195,8 +195,8 @@ output "Installing MITx requirements"
pip install -r mitx/pre-requirements.txt >> $LOG
pip install -r mitx/requirements.txt >>$LOG
mkdir "$BASE/log"
mkdir "$BASE/db"
mkdir "$BASE/log" || true
mkdir "$BASE/db" || true
cat<<END
......
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