Skip to content

Commit e7e44dd

Browse files
authored
Fixing force order
1 parent 26acda2 commit e7e44dd

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ for (root, dirs, files) in walkdir(docs_path)
4747
if !isdir(dirname(new_file))
4848
mkpath(dirname(new_file))
4949
end
50-
cp(old_file, new_file, force=true)
50+
cp(old_file, new_file)
5151
end
5252
end
5353

@@ -57,7 +57,7 @@ filter!(x -> !(basename(x) in ["make.jl", "make-utils.jl"]), paths)
5757
for path in paths
5858
new_path = replace(path, local_path => tmp_path)
5959
@debug "" path new_path
60-
cp(path, new_path)
60+
cp(path, new_path, force=true)
6161
end
6262

6363
# Build docs

0 commit comments

Comments
 (0)