Skip to content

Commit eb1cd88

Browse files
committed
Don't need force in chache move in create_files
1 parent 28529f7 commit eb1cd88

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/fileio.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -169,7 +169,7 @@ function create_files(
169169
@assert cache_fn != staging_fn
170170
@debug "Moving file \"$cache_fn\" to \"$staging_fn\"."
171171
isfile(cache_fn) || error("Expected file \"$cache_fn\" to exist, but it doesn't.")
172-
mv(cache_fn, staging_fn; force=true)
172+
mv(cache_fn, staging_fn)
173173
end
174174
end
175175
empty!(cache_fnames)

0 commit comments

Comments
 (0)