Skip to content

Commit

Permalink
test this
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikekre committed Aug 19, 2018
1 parent 9033374 commit f35fa1a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/Documenter.jl
Original file line number Diff line number Diff line change
Expand Up @@ -521,7 +521,8 @@ function git_push(
# symlink "latest" to devurl to preserve links (remove in some future release)
if devurl != "latest"
rm(joinpath(dirname, "latest"); recursive = true, force = true)
symlink(joinpath(dirname, devurl), joinpath(dirname, "latest"))
# cd(dirname) do; run(`ln -s $devurl latest`); end
cd(dirname) do; symlink(devurl, "latest"); end
end
else
@assert occursin(Base.VERSION_REGEX, tag) # checked in deploydocs
Expand Down

0 comments on commit f35fa1a

Please sign in to comment.