Commit ca401ec4 by Ned Batchelder

Be more specific about the no fullstack on ficus check

parent a57b8e1b
...@@ -108,10 +108,6 @@ if [[ ! $1 ]]; then ...@@ -108,10 +108,6 @@ if [[ ! $1 ]]; then
exit 1 exit 1
fi fi
stack=$1 stack=$1
if [[ $stack == "fullstack" ]]; then
echo -e "${ERROR}Fullstack is not yet supported for Ficus. Soon..."
exit 1
fi
shift shift
# RELEASE is an optional positional argument, defaulting to OPENEDX_RELEASE. # RELEASE is an optional positional argument, defaulting to OPENEDX_RELEASE.
...@@ -127,6 +123,11 @@ if [[ ! $release ]]; then ...@@ -127,6 +123,11 @@ if [[ ! $release ]]; then
exit 1 exit 1
fi fi
if [[ $release == *ficus* && $stack == "fullstack" ]]; then
echo -e "${ERROR}Fullstack is not yet supported for Ficus. Soon..."
exit 1
fi
# If there are positional arguments left, something is wrong. # If there are positional arguments left, something is wrong.
if [[ $1 ]]; then if [[ $1 ]]; then
echo "Don't understand extra arguments: $*" echo "Don't understand extra arguments: $*"
......
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