Update ConvertWebsiteToPDF.java

This commit is contained in:
Anthony Stirling 2025-02-28 18:46:01 +00:00 committed by GitHub
parent f3a413fe82
commit 56ad32202b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -72,6 +72,7 @@ public class ConvertWebsiteToPDF {
List<String> command = new ArrayList<>(); List<String> command = new ArrayList<>();
command.add(runtimePathConfig.getWeasyPrintPath()); command.add(runtimePathConfig.getWeasyPrintPath());
command.add(URL); command.add(URL);
command.add("--pdf-forms");
command.add(tempOutputFile.toString()); command.add(tempOutputFile.toString());
ProcessExecutorResult returnCode = ProcessExecutorResult returnCode =