Directories are created when files are copied, so we do not need
to do it prospectively here.

(cherry picked from commit 05a446b77c)
This commit is contained in:
Richard Kimberly Heck 2019-09-11 20:54:42 -04:00
parent f838b16a9b
commit bd0d2ed5b2
2 changed files with 3 additions and 1 deletions

View File

@ -537,7 +537,6 @@ void InsetInclude::latex(otexstream & os, OutputParams const & runparams) const
string exppath = incfile;
if (!runparams.export_folder.empty()) {
exppath = makeAbsPath(exppath, runparams.export_folder).realPath();
FileName(exppath).onlyPath().createPath();
}
// write it to a file (so far the complete file)

View File

@ -105,6 +105,9 @@ What's new
- Fix LaTeX error with Canadian French as second language. LyX now uses
the (recommended) babel option "acadian" rather than "canadien".
- Do not create unnecessary directories when exporting from the command
line (bug 11636).
* USER INTERFACE