Skip to content

Commit

Permalink
Now updates cache correctly.
Browse files Browse the repository at this point in the history
  • Loading branch information
anjackson committed Dec 27, 2010
1 parent 222628c commit 0f91caf
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions src/main/java/uk/bl/dpt/foreg/ForegCmd.java
Expand Up @@ -3,6 +3,7 @@
*/
package uk.bl.dpt.foreg;

import java.io.File;
import java.io.FileNotFoundException;
import java.io.FileOutputStream;
import java.net.Authenticator;
Expand All @@ -28,12 +29,14 @@ public class ForegCmd {
* http://commons.apache.org/cli/usage.html
*
* @param args
* @throws Exception
* @throws JAXBException
* @throws FileNotFoundException
*/
public static void main(String[] args) {
downloadSigFile();
pythonInvoker();
public static void main(String[] args) throws Exception {
//downloadSigFile();
SigFileUtils.downloadAllPronomFormatRecords(new File("data/pronom"));
//pythonInvoker();
}

/**
Expand Down

0 comments on commit 0f91caf

Please sign in to comment.