Skip to content

Commit

Permalink
Add subdirectory for pdfalto executables and dlls.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aazhar committed Apr 26, 2019
1 parent fe8c8b8 commit 4e1bb24
Show file tree
Hide file tree
Showing 11 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,10 +76,10 @@ private String getPdfToXmlCommand(boolean withImage, boolean withAnnotations, bo
pdfToXml.append(GrobidProperties.getPdfToXMLPath().getAbsolutePath());
// bat files sets the path env variable for cygwin dll
if (SystemUtils.IS_OS_WINDOWS) {
pdfToXml.append(
GrobidProperties.isContextExecutionServer() ? File.separator + "pdfalto_server.bat" : File.separator + "pdfalto.bat");
} else
pdfToXml.append(
//pdfalto executable are separated to avoid dll conflicts
pdfToXml.append(File.separator +"pdfalto");
}
pdfToXml.append(
GrobidProperties.isContextExecutionServer() ? File.separator + "pdfalto_server" : File.separator + "pdfalto");

pdfToXml.append(" -blocks -noImageInline -fullFontName ");
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 4e1bb24

Please sign in to comment.