Skip to content

Commit c37a868

Browse files
authored
Merge pull request #29 from sphinx-notes/bugfix/disable-errlog-dumping
Disable error log dumping since we can't get tmpdir of log
2 parents f7cabba + 633fbcf commit c37a868

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

main.sh

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -90,11 +90,12 @@ echo Temp directory \"$build_dir\" is created
9090

9191
echo ::group:: Running Sphinx builder
9292
if ! sphinx-build -b html $INPUT_SPHINX_BUILD_OPTIONS "$doc_dir" "$build_dir"; then
93-
echo ::endgroup::
94-
echo ::group:: Dumping Sphinx error log
95-
for l in $(ls /tmp/sphinx-err*); do
96-
cat $l
97-
done
93+
# See: https://github.com/sphinx-notes/pages/issues/28
94+
# echo ::endgroup::
95+
# echo ::group:: Dumping Sphinx error log
96+
# for l in $(ls /tmp/sphinx-err*); do
97+
# cat $l
98+
# done
9899
exit 1
99100
fi
100101
echo ::endgroup::

0 commit comments

Comments
 (0)