Skip to content

Commit 22c9921

Browse files
committed
fix formatting
1 parent 8ca1b5c commit 22c9921

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/MultiDocumenter.jl

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -249,7 +249,8 @@ function maybe_clone(docs::Vector{MultiDocRef})
249249
`$(git()) clone --depth 1 $(doc.giturl) --branch $(doc.branch) --single-branch --no-tags $(doc.upstream)`,
250250
)
251251
else
252-
git_dir, git_worktree = abspath(joinpath(doc.upstream, ".git")), abspath(doc.upstream)
252+
git_dir, git_worktree =
253+
abspath(joinpath(doc.upstream, ".git")), abspath(doc.upstream)
253254
if !isdir(git_dir)
254255
@warn "Unable to update existing clone at $(doc.upstream): .git/ directory missing"
255256
continue
@@ -266,7 +267,8 @@ function maybe_clone(docs::Vector{MultiDocRef})
266267
catch e
267268
# We're only interested in catching `git` errors here
268269
isa(e, ProcessFailedException) || rethrow()
269-
@error "Unable to update existing clone at $(doc.upstream)" exception = (e, catch_backtrace())
270+
@error "Unable to update existing clone at $(doc.upstream)" exception =
271+
(e, catch_backtrace())
270272
end
271273
end
272274
end

0 commit comments

Comments
 (0)