Support cross-compiling for clients

Signed-off-by: Andy Goldstein <andy.goldstein@gmail.com>
This commit is contained in:
Andy Goldstein
2017-10-24 12:26:26 -04:00
parent a1b43c43ad
commit e38b6d0f4c
18 changed files with 385 additions and 95 deletions
+5 -1
View File
@@ -25,7 +25,9 @@ cleanup() {
rm -rf ${TMP_DIR}
}
${HACK_DIR}/update-generated-docs.sh ${TMP_DIR}
echo "Verifying generated docs"
${HACK_DIR}/update-generated-docs.sh ${TMP_DIR} > /dev/null
exclude_file="README.md"
output=$(echo "`diff -r ${DOCS_DIR} ${TMP_DIR}`" | sed "/${exclude_file}/d")
@@ -35,3 +37,5 @@ if [[ -n "${output}" ]] ; then
echo "${output}"
exit 1
fi
echo "Success!"