Skip to content
Snippets Groups Projects
Commit 9588e015 authored by Andreas Romeyke's avatar Andreas Romeyke
Browse files

- bugfix, wrong order for upcoming arguments

parent 0309c1ea
Branches
Tags
No related merge requests found
...@@ -69,7 +69,7 @@ ...@@ -69,7 +69,7 @@
</fr:x_form> </fr:x_form>
</pl:initParameters> </pl:initParameters>
<pl:description>SLUB Technical Metadata Extractor Plugin, using check_it_tiff to validate tiff-files</pl:description> <pl:description>SLUB Technical Metadata Extractor Plugin, using check_it_tiff to validate tiff-files</pl:description>
<pl:version>1.7</pl:version> <pl:version>1.8</pl:version>
<pl:materialType>DIGITAL</pl:materialType> <pl:materialType>DIGITAL</pl:materialType>
<pl:module>Preservation</pl:module> <pl:module>Preservation</pl:module>
<pl:generalType>TASK</pl:generalType> <pl:generalType>TASK</pl:generalType>
......
...@@ -117,7 +117,7 @@ public class SLUBTechnicalMetadataExtractorCheckItTiffPlugin implements MDExtrac ...@@ -117,7 +117,7 @@ public class SLUBTechnicalMetadataExtractorCheckItTiffPlugin implements MDExtrac
// checkit_tiff validation (upcoming) // checkit_tiff validation (upcoming)
try { try {
String execstring = this.upcoming_checkit_tiff_binary_path + " " + filePath + " " + this.upcoming_checkit_tiff_config_path; String execstring = this.upcoming_checkit_tiff_binary_path + " " + this.upcoming_checkit_tiff_config_path + " " + filePath ;
System.out.println("executing: " + execstring); System.out.println("executing: " + execstring);
Process p = Runtime.getRuntime().exec( execstring); Process p = Runtime.getRuntime().exec( execstring);
p.waitFor(); p.waitFor();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment