Commit 88d65e3f by Ned Batchelder

Prevent people from trying to install fullstack Ficus

parent bd2514e5
......@@ -108,6 +108,10 @@ if [[ ! $1 ]]; then
exit 1
fi
stack=$1
if [[ $stack == "fullstack" ]]; then
echo -e "${ERROR}Fullstack is not yet supported for Ficus. Soon..."
exit 1
fi
shift
# RELEASE is an optional positional argument, defaulting to OPENEDX_RELEASE.
......
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