You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
My memory might be wrong but I think I could use a path with a sub-directory (like "pdf/subdir/") for fig_path in the past version of Weave.jl. Now I get an error when the first level directory ("pdf") does not exist.
ERROR: IOError: mkdir: no such file or directory (ENOENT)
I don't see any reason to intentionally prevent subdir here. Using mkpath instead should fix this.
versions
using InteractiveUtils; versioninfo():
Julia Version 1.5.2
Commit 539f3ce943 (2020-09-2323:17 UTC)
Platform Info:
OS: macOS (x86_64-apple-darwin18.7.0)
CPU:Intel(R) Core(TM) i9-9980HK CPU @ 2.40GHz
WORD_SIZE:64
LIBM: libopenlibm
LLVM: libLLVM-9.0.1 (ORCJIT, skylake)
using Pkg; Pkg.status():
Status `~/.julia/environments/v1.5/Project.toml`
[91a5bcdd] Plots v1.6.7
[44d3d7a6] Weave v0.10.4
minimum reproducible steps
test.jmd
# mkdir error test```juliausing Plots
plot()
```
using Weave
weave("test.jmd", doctype="multimarkdown", fig_path="figures/test.jmd/")
The text was updated successfully, but these errors were encountered:
description
My memory might be wrong but I think I could use a path with a sub-directory (like "pdf/subdir/") for fig_path in the past version of Weave.jl. Now I get an error when the first level directory ("pdf") does not exist.
I don't see any reason to intentionally prevent subdir here. Using mkpath instead should fix this.
versions
minimum reproducible steps
test.jmd
The text was updated successfully, but these errors were encountered: