Skip to content

Commit

Permalink
Merge pull request #38 from rafaelbailo/main
Browse files Browse the repository at this point in the history
Fix documentation deployment
  • Loading branch information
rafaelbailo committed Jun 19, 2024
2 parents b4b320f + 63dffb6 commit 957e640
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Project.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name = "ConsensusBasedX"
uuid = "8f5ebde3-ef8e-4825-b277-c25898c0de77"
authors = ["Dr Rafael Bailo"]
version = "1.3.0"
version = "1.3.1"

[deps]
DefaultKeywordArguments = "d739bc73-037a-4484-8212-e0e00e9ea6bf"
Expand Down
9 changes: 5 additions & 4 deletions docs/make.jl
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@ end

for (root, dirs, files) walkdir(SRC_DIR)
for file files
source = joinpath(root, file)
target = replace(source, SRC_DIR => PARSED_DIR)
mkpath(dirname(target))
if is_md(file)
source = joinpath(root, file)
target = replace(source, SRC_DIR => PARSED_DIR)
mkpath(dirname(target))
# cp(source, target)
parse(source, target)
else
cp(source, target)
end
end
end
Expand Down

0 comments on commit 957e640

Please sign in to comment.