Skip to content

Commit

Permalink
Fix deploying Documenter manual
Browse files Browse the repository at this point in the history
The HTML backend needs these two options, else we need to provide a
docs/mkdocs.yml file.
  • Loading branch information
nalimilan committed Jun 27, 2017
1 parent 9c92c1e commit cd580c4
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@ using Documenter, StatsBase
makedocs(
format = :html,
sitename = "StatsBase.jl",
# options
modules = [StatsBase],
pages = ["index.md",
"weights.md",
Expand All @@ -18,10 +17,12 @@ makedocs(
"empirical.md",
"signalcorr.md",
"misc.md",
"statmodels.md"]
"statmodels.md"]
)

deploydocs(
repo = "github.com/JuliaStats/StatsBase.jl.git",
julia = "0.6"
julia = "0.6",
deps = nothing,
make = nothing
)

0 comments on commit cd580c4

Please sign in to comment.