Skip to content

Commit

Permalink
Simpler case that's not as windows specific
Browse files Browse the repository at this point in the history
  • Loading branch information
tkelman committed Dec 16, 2016
1 parent 4590da3 commit 4424c54
Showing 1 changed file with 3 additions and 8 deletions.
11 changes: 3 additions & 8 deletions doc/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,14 @@ help:
@echo " check to run linkcheck and doctests"

clean:
-rm -rf _build/* deps/* docbuild.log
-rm -rf _build/* deps/*

cleanall: clean

html:
@echo "Building HTML documentation."
ifneq ($(OS),WINNT)
$(JULIA_EXECUTABLE) make.jl -- deploy
else
# work around issue #11727, windows output redirection breaking on buildbot
$(JULIA_EXECUTABLE) make.jl -- deploy > docbuild.log 2>&1
@cat docbuild.log
endif
# pipe to cat to work around issue #11727, redirection breaking on windows buildbot
$(JULIA_EXECUTABLE) make.jl -- deploy | cat 2>&1
@echo "Build finished. The HTML pages are in _build/html."

pdf:
Expand Down

0 comments on commit 4424c54

Please sign in to comment.