Fix doc build failure

Do not call pip install without argumetns

Change-Id: I4d453e313930a2dc6dd74c439add98fb460ab1ff
This commit is contained in:
Boden R 2018-04-16 07:12:04 -06:00 committed by Adit Sarfaty
parent e68048bb00
commit 19851e8bc2
1 changed files with 5 additions and 0 deletions

View File

@ -20,4 +20,9 @@ if [ $CONSTRAINTS_FILE != "unconstrained" ]; then
install_cmd="$install_cmd -c$CONSTRAINTS_FILE"
fi
if [ -z "$*" ]; then
echo "No install args given, skipping install command."
return 0
fi
$install_cmd -U $*