Skip to content

v0.2.50..v0.2.51 changeset ExportCommand.java

Garret Voltz edited this page Jan 15, 2020 · 1 revision
diff --git a/hoot-services/src/main/java/hoot/services/controllers/export/ExportCommand.java b/hoot-services/src/main/java/hoot/services/controllers/export/ExportCommand.java
index c69a3db..94520b4 100644
--- a/hoot-services/src/main/java/hoot/services/controllers/export/ExportCommand.java
+++ b/hoot-services/src/main/java/hoot/services/controllers/export/ExportCommand.java
@@ -95,6 +95,9 @@ class ExportCommand extends ExternalCommand {
         else if (translation.equalsIgnoreCase("translations/TDSv40.js")) {
             tdsTemplate = new File(templateHome, "tds40.tgz");
         }
+        else if (translation.equalsIgnoreCase("translations/TDSv70.js")) {
+            tdsTemplate = new File(templateHome, "tds70.tgz");
+        }
 
         if ((tdsTemplate != null) && tdsTemplate.exists()) {
             File outputDir = new File(this.getWorkFolder(), params.getOutputName() + "." + params.getOutputType().toLowerCase());
Clone this wiki locally