Skip to content

Commit f05b087

Browse files
authored
Fix deploydocs call in make.jl (#7)
Generation of documentation was skipped because the optional field `devbranch` was set to "main" instead of "master". Deleting this keyword argument instructs Documenter.jl to figure out the correct branch name automatically.
1 parent 4f6460a commit f05b087

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

docs/make.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,4 @@ makedocs(
1313
]
1414
)
1515

16-
deploydocs(
17-
repo = "github.com/JuliaFirstOrder/ProximalCore.jl",
18-
devbranch = "main"
19-
)
16+
deploydocs(repo = "github.com/JuliaFirstOrder/ProximalCore.jl")

0 commit comments

Comments
 (0)