Skip to content

Commit

Permalink
Back to prevous path
Browse files Browse the repository at this point in the history
  • Loading branch information
aurorarossi committed Nov 1, 2024
1 parent 4130140 commit 06e8a8c
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions docs/make-multi.jl
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
using MultiDocumenter


clonedir = ("--temp" in ARGS) ? mktempdir() : joinpath(@__DIR__, "clones")
outpath = mktempdir()
@info """
Expand All @@ -10,27 +11,27 @@ Building aggregate site into: $(outpath)

docs = [
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir,"GraphNeuralNetworks", "docs", "build"),
upstream = joinpath(dirname(@__DIR__),"GraphNeuralNetworks", "docs", "build"),
path = "GraphNeuralNetworks",
name = "GraphNeuralNetworks",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "GNNGraphs", "docs", "build"),
upstream = joinpath(dirname(@__DIR__), "GNNGraphs", "docs", "build"),
path = "GNNGraphs",
name = "GNNGraphs",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "GNNlib", "docs", "build"),
upstream = joinpath(dirname(@__DIR__), "GNNlib", "docs", "build"),
path = "GNNlib",
name = "GNNlib",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "GNNLux", "docs", "build"),
upstream = joinpath(dirname(@__DIR__), "GNNLux", "docs", "build"),
path = "GNNLux",
name = "GNNLux",
fix_canonical_url = false),
MultiDocumenter.MultiDocRef(
upstream = joinpath(clonedir, "tutorials", "docs", "build"),
upstream = joinpath(dirname(@__DIR__), "tutorials", "docs", "build"),
path = "tutorials",
name = "tutorials",
fix_canonical_url = false),
Expand Down

0 comments on commit 06e8a8c

Please sign in to comment.