Commit ad10b5d0 by Ned Batchelder

Setting OPENEDX_DEBUG=1 will trace the execution

parent bc07982e
#!/usr/bin/env bash
# Stop if any command fails
# Setting OPENEDX_DEBUG makes this more verbose.
if [[ $OPENEDX_DEBUG ]]; then
set -x
fi
# Stop if any command fails.
set -e
function usage
......
#!/usr/bin/env bash
# Stop if any command fails
# Setting OPENEDX_DEBUG makes this more verbose.
if [[ $OPENEDX_DEBUG ]]; then
set -x
fi
# Stop if any command fails.
set -e
# Logging: write all the output to a timestamped log file.
......
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