File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -229,19 +229,19 @@ jobs:
229229 SPHINX_OPTIONS=""
230230 if [ "${BUILD_PROCEDURE}" -eq 0 ]; then
231231 if [ ! "$NO_SPHINX_OPTIONS" ]; then
232- SPHINX_OPTIONS="sphinx_options=\" -A gtm_id=${GTM_ID} -D html_baseurl=${BASE_URL} ${EXTRA_SPHINX_OPTIONS}\" "
232+ SPHINX_OPTIONS="-A gtm_id=${GTM_ID} -D html_baseurl=${BASE_URL} ${EXTRA_SPHINX_OPTIONS}"
233233 fi
234- make $SPHINX_OPTIONS clean html singlehtml
234+ make sphinx_options=" $SPHINX_OPTIONS" clean html singlehtml
235235 cp -r ./build/html/* "${BUILD_OUTPUT_DIR}/"
236236 cp -r ./build/singlehtml/* "${BUILD_OUTPUT_DIR}/all/"
237237 if [ -d ./data/json/schemas ]; then
238238 cp -r ./data/json/schemas "${BUILD_OUTPUT_DIR}/"
239239 fi
240240 elif [ "${BUILD_PROCEDURE}" -eq 1 ]; then
241241 if [ ! "$NO_SPHINX_OPTIONS" ]; then
242- SPHINX_OPTIONS="sphinx_options=\" -A gtm_id=${GTM_ID} ${EXTRA_SPHINX_OPTIONS}\" "
242+ SPHINX_OPTIONS="-A gtm_id=${GTM_ID} ${EXTRA_SPHINX_OPTIONS}"
243243 fi
244- make BASE_URL=${BASE_URL} $SPHINX_OPTIONS clean html singlehtml
244+ make BASE_URL=${BASE_URL} sphinx_options= $SPHINX_OPTIONS clean html singlehtml
245245 cp -r ./ja/build/html/* "${BUILD_OUTPUT_DIR}/"
246246 cp -r ./ja/build/singlehtml/* "${BUILD_OUTPUT_DIR}/all/"
247247 if [ -d ./en/build/html ]; then
You can’t perform that action at this time.
0 commit comments