allow extra parameters to be passed to apidocs container

This commit is contained in:
2020-05-17 10:26:59 -04:00
parent 4a38cc16f4
commit f2eb584214
5 changed files with 26 additions and 7 deletions

View File

@@ -8,6 +8,8 @@ echo Using file filter: "${FILE_FILTER}"
echo
cd /src/ || exit
echo ${APP_DIR} : ${DOCS_DIR} : ${FILE_FILTER}
rm -rf ${DOCS_DIR} && mkdir -p ${DOCS_DIR}
apidoc -i ${APP_DIR} -o ${DOCS_DIR} -f ${FILE_FILTER}
echo "${APP_DIR}" : "${DOCS_DIR}" : "${FILE_FILTER}"
rm -rf "${DOCS_DIR}" && mkdir -p "${DOCS_DIR}"
# shellcheck disable=SC2068
apidoc -i "${APP_DIR}" -o "${DOCS_DIR}" -f "${FILE_FILTER}" $@