Skip to content

Commit

Permalink
Fixes bug in deploydocs call
Browse files Browse the repository at this point in the history
  • Loading branch information
cadojo committed Dec 31, 2024
1 parent 385181f commit f74a5f7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,4 +3,4 @@ using Quarto

Quarto.render(joinpath(@__DIR__, "src"))

Documenter.deploydocs(repo = "https://github.com/cadojo/DocumenterQuarto.jl.git")
Documenter.deploydocs(repo="github.com/cadojo/DocumenterQuarto.jl")
2 changes: 1 addition & 1 deletion src/DocumenterQuarto.jl
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ function generate(; title=nothing, type="book", api="api")
capture = IOCapture.capture() do
run(`$(git()) remote get-url origin`)
end
strip(capture.output)
replace(strip(capture.output), ".git" => "", "https://" => "", "http://" => "", "www." => "")
end

author = let
Expand Down

0 comments on commit f74a5f7

Please sign in to comment.