We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b4b320f commit 63dffb6Copy full SHA for 63dffb6
Project.toml
@@ -1,7 +1,7 @@
1
name = "ConsensusBasedX"
2
uuid = "8f5ebde3-ef8e-4825-b277-c25898c0de77"
3
authors = ["Dr Rafael Bailo"]
4
-version = "1.3.0"
+version = "1.3.1"
5
6
[deps]
7
DefaultKeywordArguments = "d739bc73-037a-4484-8212-e0e00e9ea6bf"
docs/make.jl
@@ -38,12 +38,13 @@ end
38
39
for (root, dirs, files) ∈ walkdir(SRC_DIR)
40
for file ∈ files
41
+ source = joinpath(root, file)
42
+ target = replace(source, SRC_DIR => PARSED_DIR)
43
+ mkpath(dirname(target))
44
if is_md(file)
- source = joinpath(root, file)
- target = replace(source, SRC_DIR => PARSED_DIR)
- mkpath(dirname(target))
45
- # cp(source, target)
46
parse(source, target)
+ else
47
+ cp(source, target)
48
end
49
50
0 commit comments